Core APIReferenceAssetsSlug

/assets/{slug}/apy-history

Get Asset APY history by slug for the given date range

GET
/assets/{slug}/apy-history

Get Asset APY 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/apy-history"
{  "data": {    "slug": "string",    "tokens": [      {        "assetAddress": "string",        "chainId": 0,        "symbol": "string",        "history": [          {            "day": 0,            "apy": {              "rolling7d": 0,              "rolling30d": 0,              "sec30d": 0            }          }        ]      }    ]  }}