GET
/
api
/
v1
/
web3-data
/
collections
/
{contractAddress}
curl --request GET \
  --url https://api.drip.re/api/v1/web3-data/collections/{contractAddress} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "image": "<string>",
    "bannerImage": null,
    "contractAddress": "<string>",
    "chain": "ethereum",
    "totalSupply": 123,
    "floorPrice": null,
    "volume": null,
    "marketCap": null,
    "nfts": [
      {
        "id": "<string>",
        "contractAddress": "<string>",
        "chain": "ethereum",
        "tokenId": "<string>",
        "owner": "<string>",
        "name": "<string>",
        "description": "<string>",
        "image": "<string>",
        "attributes": [
          {
            "traitType": "<string>",
            "value": "<string>",
            "displayType": null
          }
        ]
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API Key

Path Parameters

contractAddress
string
required

Query Parameters

chain
enum<string>
default:ethereum
Available options:
ethereum,
polygon,
base,
apechain,
arbitrum,
arbitrumNova,
abstract,
avalanche,
b3,
berachain,
blast,
bsc,
boss,
cyber,
degen,
flow,
forma,
hychain,
linea,
nebula,
opbnb,
optimism,
polygonZkEVM,
redstone,
scroll,
sei,
shape,
soneium,
xai,
zero,
zora,
zksync,
solana

Response

200 - application/json

Default Response

data
any