API Documentation

⌘K
GET/api/1/nft/profile/{id}

NFT Collection Profile API

Returns detailed profile for a specific NFT collection including floor price, market cap, volume, supply, holder count, and social links

Parameters

1
idstringrequired
path

NFT collection ID (e.g. bored-ape-yacht-club, cryptopunks)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/nft/profile/{id}' \
  -H 'Accept: application/json'
200 Response
{
  "id": "string",
  "name": "string",
  "symbol": "string",
  "description": "string",
  "contract_address": "string",
  "asset_platform_id": "string",
  "native_currency": "string",
  "floor_price_usd": 0,
  "market_cap_usd": 0,
  "volume_24h_usd": 0,
  "floor_price_24h_pct_change": 0,
  "market_cap_24h_pct_change": 0,
  "total_supply": 0,
  "number_of_unique_addresses": 0,
  "one_day_sales": 0,
  "one_day_average_sale_price": 0,
  "image_url": "string",
  "banner_image": "string",
  "links": {}
}