> ## Documentation Index
> Fetch the complete documentation index at: https://docs.marketdataset.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# GET /forex/pairs

> List all available forex pairs

## Endpoint

```
GET https://api.marketdataset.ai/forex/pairs
```

## Parameters

No parameters required.

## Credit cost

**\$0.001** per request

## Example request

```bash theme={null}
curl "https://api.marketdataset.ai/forex/pairs" \
  -H "X-API-KEY: sk_your_key"
```

## Example response

```json theme={null}
{
  "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
  }
}
```
