> ## Documentation Index
> Fetch the complete documentation index at: https://getequity.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Token Historicals

> Fetch historical daily price and volume (OHLCV) data for a token

Returns one entry per day, each holding the buy/sell price and traded volume for
that day. Useful for plotting a token's price history.

<ParamField path="id" type="string" required>
  The ID of the token whose historicals should be retrieved.
</ParamField>

<ResponseExample>
  ```json theme={null}
  {
      "status": "success",
      "message": "ohlvc details gotten successfully",
      "data": [
          {
              "_id": {
                  "day": 28,
                  "month": 1,
                  "year": 2021
              },
              "volume": 0,
              "price": {
                  "buy": 10,
                  "sell": 10
              },
              "date": "2021-01-28T20:13:05.707Z"
          },
          {
              "_id": {
                  "day": 29,
                  "month": 1,
                  "year": 2021
              },
              "volume": 0,
              "price": {
                  "buy": 10,
                  "sell": 10
              },
              "date": "2021-01-29T00:00:00.029Z"
          },
          {
              "_id": {
                  "day": 30,
                  "month": 1,
                  "year": 2021
              },
              "volume": 0,
              "price": {
                  "buy": 10,
                  "sell": 10
              },
              "date": "2021-01-30T00:00:00.090Z"
          }
      ]
  }
  ```
</ResponseExample>
