curl --request GET \
--url https://data-api.b3.fun/insights/v1/nfts/collections/{contract_address}
{
"data": [
{
"name": "<string>",
"description": "<string>",
"image_url": "<string>",
"banner_image_url": "<string>",
"featured_image_url": "<string>",
"external_link": "<string>",
"stats": {
"owner_count": 123,
"token_count": 123,
"mint_count": 123,
"total_quantity": 123
}
}
]
}
Retrieve metadata about a collection
curl --request GET \
--url https://data-api.b3.fun/insights/v1/nfts/collections/{contract_address}
{
"data": [
{
"name": "<string>",
"description": "<string>",
"image_url": "<string>",
"banner_image_url": "<string>",
"featured_image_url": "<string>",
"external_link": "<string>",
"stats": {
"owner_count": 123,
"token_count": 123,
"mint_count": 123,
"total_quantity": 123
}
}
]
}
Success
The response is of type object
.