Forex
GET /forex/pairs
List all available forex pairs
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List all available forex pairs
GET https://api.marketdataset.ai/forex/pairs
curl "https://api.marketdataset.ai/forex/pairs" \
-H "X-API-KEY: sk_your_key"
{
"pairs": [
{ "symbol": "EURUSD", "base": "EUR", "quote": "USD", "description": "Euro / US Dollar" },
{ "symbol": "GBPUSD", "base": "GBP", "quote": "USD", "description": "British Pound / US Dollar" },
{ "symbol": "USDJPY", "base": "USD", "quote": "JPY", "description": "US Dollar / Japanese Yen" }
],
"meta": {
"request_id": "req_abc123",
"credits_used": 0.001,
"credits_remaining": 49.999
}
}