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 (≤50 real-time, ≤10 historical) |
| indicators | string | Yes | Comma-separated indicator names |
| timeframe | string | No | Timeframe: M1, M5, M15, M30, H1, H4, D1. Default: H1. |
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,
"data": {
"timeframe": "H1",
"data": {
"EURUSD": {
"RSI_14": 58.43,
"MACD_main": 0.00032,
"ADX": 28.1
},
"GBPUSD": {
"RSI_14": 24.31,
"MACD_main": -0.00018,
"ADX": 34.6
}
},
"not_found": null,
"updated_at": 1711548000
}
} Why Use Multi?
1 call
Instead of 6 separate requests for 2 symbols × 3 indicators
1 call
Single round-trip vs. accumulated latency
2× cost
Counts as one premium request regardless of how many indicators