# 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"}}}}
```
