Core APIReferenceAssetsSlug

/assets/{slug}/price-history

Get Asset price history by slug for the given date range

GET
/assets/{slug}/price-history

Get Asset price history by slug for the given date range

Path Parameters

slug*string

The slug of the asset

Length1 <= length

Query Parameters

startDate?|

Unix timestamp in seconds

endDate?|

Unix timestamp in seconds

Default1787558924

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/assets/superstate-uscc/price-history"
{  "data": {    "slug": "string",    "tokens": [      {        "assetAddress": "string",        "chainId": 0,        "symbol": "string",        "history": [          {            "day": 0,            "price": 0          }        ]      }    ]  }}