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 Volume By Chain Mainnet Only Premium Endpoint

💡Premium Endpoint

To use this API, you will need an API key associated with a Moralis account on the Pro plan or higher.

GEThttps://deep-index.moralis.io/api/v2.2/volume/timeseries

Fetch timeseries volume, liquidity and FDV for a specific blockchain.

QUERY PARAMS
chainstring
The chain to query
timeframestringrequired
The timeframe to query
Responses
200Successful response
400Bad Request
404Not Found
429Too Many Requests
500Internal Server Error
API KEY
curl --request GET \
--url 'https://deep-index.moralis.io/api/v2.2/volume/timeseries?timeframe=1d' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY'
Response Example
{
"timeseries": [
{
"timestamp": "2022-02-22T00:00:00Z",
"volume": 4565,
"liquidityUsd": 4565,
"fullyDilutedValuation": 4565
}
]
}