Retrieve historical daily metrics for a specific crypto token, including USD price, trading volume, and market capitalization. This endpoint is useful for analyzing token performance trends over time.
This endpoint supports up to 1,000 items per page—ideal for bulk analytics or plotting historical charts efficiently. Use the query param page and pagination attributes to navigate through results.
To fetch data for a token, pass any of these query parameters: token_address, token_id, or token_ticker.
Use start_date and end_date to narrow down results to a custom date range, helping reduce payload size and focus on relevant timeframes.
Combine this endpoint with others like, ,or to create rich analytics, dashboards, or market sentiment tools.
Query Parameters
Parameter name
Type
Mandatory
Description
api_key
string
Yes
Your unique Loky API key used for authentication
chain
string
Yes
The network chain to query. Supported chains: base, solana
token_id
string
No
Unique token Id to fetch data
token_ticker
string
No
Token ticker (symbol) to fetch data
token_address
string
No
Token contract address to fetch data
page
integer
No, Default page 1
Page number, 1000 items per page
start_date
string
No
Date from where the data is need to fetch. Use format: YYYY-MM-DD
end_date
string
No
Date to where the data is need to fetch. Use format: YYYY-MM-DD
Sample Request
# Pagination enabled (via page parameter)
curl --location 'https://api.dapplooker.com/v1/crypto-market-historical?api_key=<API_KEY>&chain=base&token_address=0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4&page=1'
# With custom date range (start_date & end_date)
curl --location 'https://api.dapplooker.com/v1/crypto-market-historical?&api_key=<API_KEY>&chain=base&token_ticker=VIRTUAL&start_date=2025-01-01&end_date=2025-06-06'