> 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/market-data/rest-api/price-statistics.md).

# Price statistics

## Get price statistics for specified symbol(s)

> 24 hour statistics for High, Low, % change in price, notional change, and 52-week high and low. Data updated every minute.

```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":{"/v2/priceStatistics":{"get":{"summary":"Get price statistics for specified symbol(s)","description":"24 hour statistics for High, Low, % change in price, notional change, and 52-week high and low. Data updated every minute.","tags":["Market Data"],"parameters":[{"name":"symbol","in":"query","required":false,"schema":{"type":"string"},"description":"e.g., `BTC-USD` or `BTC-USD,ETH-USD,SOL-USD` Currency pair or comma-separated list of currency pairs. Omit this parameter for all symbols"}],"responses":{"200":{"description":"Returns 24-hour price statistics","content":{"application/json":{"schema":{"type":"object","properties":{"symbol":{"type":"string","description":"Currency"},"itemDateTime":{"type":"integer","format":"int64","description":"Time in epoch milliseconds when this record was updated."},"high":{"type":"number","format":"double"},"low":{"type":"number","format":"double"},"percentChange":{"type":"number","format":"double"},"notionalChange":{"type":"number","format":"double"},"high52Week":{"type":"number","format":"double"},"low52Week":{"type":"number","format":"double"}},"required":["symbol","itemDateTime","high","low","percentChange","notionalChange"]}}}},"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":"GetBestPrice"}}}}
```


---

# 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, and the optional `goal` query parameter:

```
GET https://docs.aquanow.io/cams/market-data/rest-api/price-statistics.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
