> For the complete documentation index, see [llms.txt](https://developers.unigox.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.unigox.com/api-reference/exchange-pairs.md).

# Exchange Pairs

Get information about supported trading pairs

## Supported exchange pairs

> Get a list of all supported cryptocurrency and fiat currency exchange pairs. Shows which currency combinations can be traded.

```json
{"openapi":"3.0.3","info":{"title":"Unigox API Gateway","version":"1.0.0"},"tags":[{"name":"Exchange Pairs","description":"Get information about supported trading pairs"}],"servers":[{"url":"https://api-staging.unigox.com","description":"Sandbox server"},{"url":"https://api.unigox.com","description":"Production server"}],"paths":{"/api/v1/supported-exchange-pairs":{"get":{"tags":["Exchange Pairs"],"summary":"Supported exchange pairs","description":"Get a list of all supported cryptocurrency and fiat currency exchange pairs. Shows which currency combinations can be traded.","operationId":"getSupportedPairs","responses":{"200":{"description":"Successfully retrieved supported pairs","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupportedPairsResponse"}}}}}}}},"components":{"schemas":{"SupportedPairsResponse":{"allOf":[{"$ref":"#/components/schemas/APIResponse"},{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/SupportedPair"}}}}]},"APIResponse":{"type":"object","required":["success"],"properties":{"success":{"type":"boolean","description":"Indicates if the request was successful"},"data":{"description":"Response data (structure varies by endpoint) or error information if success is false"}}},"SupportedPair":{"type":"object","properties":{"crypto_currency_code":{"type":"string","description":"Cryptocurrency code (e.g., USDC, BTC)"},"fiat_currency_code":{"type":"string","description":"Fiat currency code (e.g., USD, EUR)"},"type":{"type":"string","enum":["BUY","SELL"],"description":"Trading pair type - BUY (fiat to crypto) or SELL (crypto to fiat)"}}}}}}
```
