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 collection stats

GEThttps://deep-index.moralis.io/api/v2.2/nft/:address/stats

Get the stats for a nft collection address.

PATH PARAMS
addressstringrequired
The address of the NFT collection
QUERY PARAMS
chainstring
The chain to query
Responses
200Returns the stats for the nft token.
400Bad Request
404Not Found
429Too Many Requests
500Internal Server Error
API KEY
curl --request GET \
--url 'https://deep-index.moralis.io/api/v2.2/nft/0x306b1ea3ecdf94ab739f1910bbda052ed4a9f949/stats?chain=eth' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY'
Response Example
{
"total_tokens": "100",
"owners": {
"current": "1000"
},
"transfers": {
"total": "1000"
}
}