Accounts
Realm-Members
Realms
Currencies
Shared Currency
- GETGet all the pending requests for a realm (not by currency)
- POSTShare a currency with another realm
- POSTAccept a pending shared currency
- POSTReject a pending shared currency
- GETList all child realms that use a parent's currency
- DELUn-share a currency from a child realm
- DELRemove a shared currency from a child realm
Twitter-Data
Web3-Data-Collections
Web3-Data-Wallets
Web3-Data-Nfts
Web3-Data-Tokens
Web3-Activations
Web3-Activations-Configs
Web3-Data-Collections
Get metadata for a collection
GET
/
api
/
v1
/
web3-data
/
collections
/
{contractAddress}
Copy
curl --request GET \
--url https://api.drip.re/api/v1/web3-data/collections/{contractAddress} \
--header 'Authorization: Bearer <token>'
Copy
{
"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
API Key
Path Parameters
Query Parameters
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
The response is of type object
.
Copy
curl --request GET \
--url https://api.drip.re/api/v1/web3-data/collections/{contractAddress} \
--header 'Authorization: Bearer <token>'
Copy
{
"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
}
]
}
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.