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

# Pairs

## Get Available Trade Pairs

> Retrieve a list of supported trade pairs with precision details.

```json
{"openapi":"3.0.3","info":{"title":"Aquanow CAMS REST API","version":"1.0"},"servers":[{"url":"https://cams.aquanow.com/api","description":"production"},{"url":"http://localhost:3001/api","description":"local"},{"url":"https://camsapi-dev.aquanow.com/api","description":"dev"},{"url":"https://camsapi-staging.aquanow.com/api","description":"staging"},{"url":"https://cams.cert.aquanow.com/api","description":"cert"}],"security":[{"Bearer":[]}],"components":{"securitySchemes":{"Bearer":{"type":"http","scheme":"bearer"}},"schemas":{"PairStatus":{"type":"string","enum":["ACTIVE","INACTIVE"]}},"responses":{"400":{"description":"Validation Error"},"401":{"description":"Unauthorized"},"403":{"description":"Insufficient Privileges"},"4XX":{"description":"Client error"},"5XX":{"description":"Server error"}}},"paths":{"/v1/instruments/pairs":{"get":{"summary":"Get Available Trade Pairs","description":"Retrieve a list of supported trade pairs with precision details.","tags":["Instruments"],"responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"pair":{"type":"string"},"status":{"$ref":"#/components/schemas/PairStatus"},"baseSymbol":{"type":"string"},"quoteSymbol":{"type":"string"},"minBaseOrderSize":{"type":"string","format":"number"},"minQuoteOrderSize":{"type":"string","format":"number"},"baseQtyPrecision":{"type":"string","format":"integer"},"quoteQtyPrecision":{"type":"string","format":"integer"}}}}}}},"400":{"$ref":"#/components/responses/400"},"401":{"$ref":"#/components/responses/401"},"403":{"$ref":"#/components/responses/403"},"4XX":{"$ref":"#/components/responses/4XX"},"5XX":{"$ref":"#/components/responses/5XX"}},"operationId":"GetAllAvailableTradePairs"}}}}
```
