> 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/market-reference.md).

# Market Reference

## Get market metrics

> Retrieve live market metrics for trading pairs enabled for the authenticated CAMS tenant.

```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://cams.dev.aquanow.com/api","description":"dev"},{"url":"https://cams.staging.aquanow.com/api","description":"staging"},{"url":"https://cams.cert.aquanow.com/api","description":"cert"},{"url":"https://marketdata.aquanow.com","description":"production market data"},{"url":"https://marketdata.staging.aquanow.com","description":"staging market data"},{"url":"https://marketdata.dev.aquanow.com","description":"dev market data"}],"security":[{"Bearer":[]}],"components":{"securitySchemes":{"Bearer":{"type":"http","scheme":"bearer"}},"responses":{"400":{"description":"Validation Error"},"401":{"description":"Unauthorized"},"403":{"description":"Insufficient Privileges"},"4XX":{"description":"Client error"},"5XX":{"description":"Server error"}}},"paths":{"/v1/market-data/metrics":{"get":{"summary":"Get market metrics","description":"Retrieve live market metrics for trading pairs enabled for the authenticated CAMS tenant.","tags":["Market Data"],"parameters":[{"name":"pair","in":"query","required":false,"schema":{"type":"string"},"description":"Comma-separated trading pairs. When omitted, returns all enabled pairs for the tenant."},{"name":"quoteCurrency","in":"query","required":false,"schema":{"type":"string","enum":["USD","AED"]},"description":"Quote currency for metrics. Day-1 supported values: USD, AED."},{"name":"limit","in":"query","required":false,"schema":{"type":"string","format":"integer"},"description":"Maximum number of records to return."},{"name":"offset","in":"query","required":false,"schema":{"type":"string","format":"integer"},"description":"Pagination offset."}],"responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"pair":{"type":"string"},"lastUpdated":{"type":"string","format":"date-time"},"marketCap":{"type":"string"},"globalVolume24h":{"type":"string"},"priceChange24h":{"type":"string"},"priceChange24hPercent":{"type":"string"},"allTimeHighPrice":{"type":"string"},"allTimeHighTimestamp":{"type":"string","format":"date-time"},"allTimeLowPrice":{"type":"string"},"allTimeLowTimestamp":{"type":"string","format":"date-time"}}}}}}},"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":"GetMarketDataMetrics"}}}}
```

## Get market reference data

> Retrieve global coin reference metadata for assets enabled for the authenticated CAMS tenant.

```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://cams.dev.aquanow.com/api","description":"dev"},{"url":"https://cams.staging.aquanow.com/api","description":"staging"},{"url":"https://cams.cert.aquanow.com/api","description":"cert"},{"url":"https://marketdata.aquanow.com","description":"production market data"},{"url":"https://marketdata.staging.aquanow.com","description":"staging market data"},{"url":"https://marketdata.dev.aquanow.com","description":"dev market data"}],"security":[{"Bearer":[]}],"components":{"securitySchemes":{"Bearer":{"type":"http","scheme":"bearer"}},"responses":{"400":{"description":"Validation Error"},"401":{"description":"Unauthorized"},"403":{"description":"Insufficient Privileges"},"4XX":{"description":"Client error"},"5XX":{"description":"Server error"}}},"paths":{"/v1/market-data/reference":{"get":{"summary":"Get market reference data","description":"Retrieve global coin reference metadata for assets enabled for the authenticated CAMS tenant.","tags":["Market Data"],"parameters":[{"name":"assetSymbol","in":"query","required":false,"schema":{"type":"string"},"description":"Comma-separated asset symbols. When omitted, returns all enabled assets for the tenant."},{"name":"limit","in":"query","required":false,"schema":{"type":"string","format":"integer","default":"50"},"description":"Maximum number of records to return."},{"name":"offset","in":"query","required":false,"schema":{"type":"string","format":"integer","default":"0"},"description":"Pagination offset."}],"responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","required":["assetSymbol","assetName","assetDescription","assetType","circulatingSupply","totalSupply","maxSupply","lastUpdated"],"properties":{"assetSymbol":{"type":"string"},"assetName":{"type":"string"},"assetDescription":{"type":"string"},"assetType":{"type":"string","enum":["crypto","fiat"]},"circulatingSupply":{"type":"string"},"totalSupply":{"type":"string","nullable":true},"maxSupply":{"type":"string","nullable":true},"lastUpdated":{"type":"string","format":"date-time"}}}}}}},"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":"GetMarketDataReference"}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.aquanow.io/cams/api-reference/market-reference.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
