GET /v1/multi Premium (2×)
Multi-Indicator Batch
Fetch multiple indicators for multiple symbols in a single API call. Ideal for dashboards, screeners, and any application that needs several data points at once.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbols | string | Yes | Comma-separated symbols (max 10) |
| indicators | string | Yes | Comma-separated indicator names (max 10) |
| timeframe | string | Yes | Timeframe: M1–D1 |
Example Request
cURL
curl -H "X-API-Key: YOUR_API_KEY" \
"https://tickatlas.com/v1/multi?symbols=EURUSD,GBPUSD&indicators=RSI_14,MACD_main,ADX&timeframe=H1" Success Response
200 OK
{
"success": true,
"timeframe": "H1",
"timestamp": "2026-03-21T14:00:00Z",
"data": {
"EURUSD": {
"RSI_14": { "value": 58.43, "signal": "neutral" },
"MACD_main": { "value": 0.00032, "signal": "bullish" },
"ADX": { "value": 28.1, "signal": "trending" }
},
"GBPUSD": {
"RSI_14": { "value": 24.31, "signal": "oversold" },
"MACD_main": { "value": -0.00018, "signal": "bearish" },
"ADX": { "value": 34.6, "signal": "strong_trend" }
}
},
"symbols_requested": 2,
"indicators_requested": 3,
"metadata": {
"source": "live",
"data_age_seconds": 3
}
} Why Use Multi?
1 call
Instead of 6 separate requests for 2 symbols × 3 indicators
~50ms
Single round-trip vs. accumulated latency
2× cost
Counts as one premium request regardless of how many indicators