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

> Retrieves a list of supported currency pairs for exchange.

# Supported Rates.

To retrieve the list of supported currency pairs, send a `GET` request to the `/exchange/pairs` endpoint with the `Accept` header set to `application/json`. A successful response (HTTP status code 200) will return the above JSON structure.

```json theme={null}
GET /exchange/pairs
```

**Sample Response**

```json theme={null}
{
  "data": [
    "USD-NGN"
  ]
}
```
