> For the complete documentation index, see [llms.txt](https://hyperliquid-ohlc.gitbook.io/api-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hyperliquid-ohlc.gitbook.io/api-docs/rest-api/trader-metrics/trading-volume-with-token-breakdown.md).

# Trading Volume with Token Breakdown

## Get token-wise trading breakdown for a trader on a specific day

> Retrieve per-token trading activity (direction and volume) for a trader on a specific day, identified by a Unix timestamp in milliseconds.

```json
{"openapi":"3.1.0","info":{"title":"BlockLiquidity API Service","version":"1.0.0"},"servers":[{"url":"https://data.blockliquidity.xyz"}],"security":[{"HTTPBearer":[]}],"components":{"securitySchemes":{"HTTPBearer":{"type":"http","scheme":"bearer"}},"schemas":{"CalendarDetailResponse":{"properties":{"data":{"items":{"$ref":"#/components/schemas/CalendarDetailEntry"},"type":"array","title":"Data"}},"type":"object","required":["data"],"title":"CalendarDetailResponse"},"CalendarDetailEntry":{"properties":{"dir":{"type":"string","title":"Dir"},"token":{"type":"string","title":"Token"},"volume":{"type":"number","title":"Volume"}},"type":"object","required":["dir","token","volume"],"title":"CalendarDetailEntry"},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"},"input":{"title":"Input"},"ctx":{"type":"object","title":"Context"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"}}},"paths":{"/v1/trader/{address}/calendar/{timestamp}":{"get":{"tags":["Trader Rankings"],"summary":"Get token-wise trading breakdown for a trader on a specific day","description":"Retrieve per-token trading activity (direction and volume) for a trader on a specific day, identified by a Unix timestamp in milliseconds.","operationId":"get_calendar_details_v1_trader__address__calendar__timestamp__get","parameters":[{"name":"address","in":"path","required":true,"schema":{"type":"string","description":"Trader wallet address","title":"Address"},"description":"Trader wallet address"},{"name":"timestamp","in":"path","required":true,"schema":{"type":"integer","minimum":0,"description":"Unix timestamp in milliseconds for the target day","title":"Timestamp"},"description":"Unix timestamp in milliseconds for the target day"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CalendarDetailResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}}}
```
