GET
/v2/snapshot/locale/global/markets/forex/tickers/{ticker}
Forex Single Ticker Snapshot
Single forex ticker snapshot (quote/min/day/prevDay).
Endpoint Details
| HTTP Method |
GET |
| Path |
/v2/snapshot/locale/global/markets/forex/tickers/{ticker} |
| Version |
v2 |
| Minimum Plan |
free |
Path Parameters
| Parameter |
Required |
Description |
Example |
ticker |
Required |
The stock ticker symbol (e.g., AAPL, MSFT) |
AAPL |
Query Parameters
| Parameter |
Type |
Required |
Description |
api_key |
string |
Required |
Your API key for authentication |
limit |
integer |
Optional
|
Maximum number of results to return |
sort |
string |
Optional
|
Sort order (asc or desc) |
Example Request
curl "https://mail.tradeiqai.com/api/v2/snapshot/locale/global/markets/forex/tickers/AAPL?api_key=YOUR_API_KEY"
Note: Replace YOUR_API_KEY with your actual API key.
Response Attributes
| Attribute |
Type |
Description |
ok | boolean | Indicates if the request was successful (e.g., 1) |
data | object | Response data object |
data.status | string | Response status (typically "OK") (e.g., OK) |
data.results | object | Array or object containing the endpoint-specific data |
data.results.data | string | String value (e.g., ) |
Example Response
{
"ok": true,
"data": {
"status": "OK",
"ticker": "AAPL",
"results": {
"data": ""
}
}
}