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


---

# Agent Instructions: 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://hyperliquid-ohlc.gitbook.io/api-docs/rest-api/trader-metrics/trading-volume-with-token-breakdown.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.
