GET
/
insights
/
v1
/
nfts
/
collections
/
{contract_address}
Get 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
      }
    }
  ]
}

Path Parameters

contract_address
string
required
Example:

"vitalik.eth"

Query Parameters

chain
number[]
deprecated

Use chain_id instead

Example:
[20, 56, 1]
chain_id
number[]

The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 55. Use repeated query parameters, e.g., ?chain_id=20&chain_id=56. Optional, because a single chain can as well be specified as a subdomain

Example:
[20, 56, 1]
include_stats
enum<string>
default:false

Whether to include stats for the collection

Available options:
true,
false
Example:

"false"

Whether to resolve metadata IPFS or Arweave links

Available options:
true,
false
Example:

"false"

Response

200
application/json

Success

The response is of type object.