Skip to main content

Don't have an API key yet?

Sign-up to Moralis to get your free API key and start building today.

Get Your Free API Key

Get Timeseries Token Analytics Mainnet Only

POSThttps://deep-index.moralis.io/api/v2.2/tokens/analytics/timeseries

Fetch timeseries buy volume, sell volume, liquidity and FDV for multiple tokens. Accepts an array of up to 200 tokens, each requiring chain and tokenAddress.

QUERY PARAMS
timeframestringrequired
The timeframe to query
BODY PARAM
Request Bodyobjectrequired
Body
Responses
200Successful response
400Bad Request
404Not Found
429Too Many Requests
500Internal Server Error
API KEY
curl --request POST \
--url 'https://deep-index.moralis.io/api/v2.2/tokens/analytics/timeseries?timeframe=1d' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY' \
--header 'content-type: application/json' \
--data '
{
"tokens": [
{
"chain": "0x1",
"tokenAddress": "0xdac17f958d2ee523a2206206994597c13d831ec7"
},
{
"chain": "solana",
"tokenAddress": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
}
]
}
'
Response Example
{
"result": [
{
"chainId": "0x1",
"tokenAddress": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"timeseries": [
{
"timestamp": "2022-02-22T00:00:00Z",
"buyVolume": 4565,
"sellVolume": 4565,
"liquidityUsd": 4565,
"fullyDilutedValuation": 4565
}
]
}
]
}