Skip to main content

GET /api/nft/trending

Trending NFT collections

GET trending data from nft service

Endpoint​

GET https://api.web3identity.com/api/nft/trending

Parameters​

NameInTypeRequiredDescription
chainquerystring❌Blockchain (ethereum, polygon, base)

Example Request​

curl -s "https://api.web3identity.com/api/nft/trending" | jq

Responses​

200 Success​

{
"collections": [
{
"address": "0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D",
"name": "Bored Ape Yacht Club",
"floorPrice": {
"eth": 25.5,
"usd": 82743.75
},
"volume24h": 234567.89,
"change24h": 12.34
},
{
"address": "0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB",
"name": "CryptoPunks",
"floorPrice": {
"eth": 45.6,
"usd": 148001.52
},
"volume24h": 345678.9,
"change24h": 8.9
}
]
}

400 Bad request - invalid parameters​

{
"example": "response"
}

402 Payment required​

404 Resource not found​

{
"example": "response"
}

429 Rate Limited​

{
"example": "response"
}

500 Internal Server Error - Something went wrong on our end​

{
"error": "Internal server error",
"code": "INTERNAL_ERROR"
}

Auto-generated from OpenAPI spec