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 Category 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/:categoryId

Returns historical buy and sell volume data for a specific token category in time intervals

PATH PARAMS
categoryIdstringrequired
The category identifier
QUERY PARAMS
chainstring
The chain to query
timeframestringrequired
The time interval for data points
Responses
200Returns time series volume data for the specified category
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/artificial-intelligence?chain=eth&timeframe=1d' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY'
Response Example
{
"timeseries": [
{
"timestamp": "2025-03-04T10:00:00.000Z",
"buyVolume": 8330.827220195075,
"sellVolume": 27373.234584900256
}
]
}