List of Collection Stat
Retrieve statistics for NFT collections. Specify chain, offset, and limit to filter results.
Authorizations
X-API-KEYstringRequired
Query parameters
chainstringOptional
Specify the chain to fetch stats for (CRONOS or ETHEREUM). If omitted, returns stats for all chains.
offsetintegerOptionalDefault:
Starting point for record retrieval (0 to n).
0limitintegerOptionalDefault:
Number of records to return (1 to 50).
10Responses
200
A list of collection statistics.
application/json
400
Invalid request.
application/json
get
/api/v1/collection/statsGET /api/v1/collection/stats HTTP/1.1
Host: public-api.minted.network
X-API-KEY: YOUR_API_KEY
Accept: */*
[
{
"address": "text",
"name": "text",
"currency": "text",
"symbol": "text",
"description": "text",
"logo_url": "text",
"total_supply": 1,
"website": "text",
"discord": "text",
"telegram": "text",
"twitter": "text",
"owner_count": 1,
"standard": "text",
"floor_price": "text",
"floor_price_change_one_day": "text",
"volume_one_day": "text",
"volume_seven_day": "text",
"volume_thirty_day": "text",
"volume_all_time": "text",
"volume_change_one_day": 1,
"volume_change_seven_days": 1,
"volume_change_one_month": 1
}
]Last updated