API Documentation

⌘K
GET/api/1/nft/list

NFT Collections List API

Returns a paginated list of NFT collections ranked by market cap, with floor price, volume, and holder data

Parameters

5
offsetnumber
query

Pagination offset (default 0)

limitnumber
query

Number of results (default 50, max 200)

sortstring
query

Sort field: market_cap, volume_24h, floor_price (default market_cap)

orderstring
query

Sort order: desc, asc (default desc)

platformstring
query

Filter by asset platform (e.g. ethereum, solana)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/nft/list?offset=0&limit=10' \
  -H 'Accept: application/json'
200 Response
{
  "total": 0,
  "offset": 0,
  "limit": 0,
  "results": {
    "id": "bored-ape-yacht-club",
    "name": "Bored Ape Yacht Club",
    "symbol": "BAYC",
    "floor_price_usd": 0,
    "market_cap_usd": 0,
    "volume_24h_usd": 0,
    "floor_price_24h_pct_change": 0,
    "total_supply": 0,
    "number_of_unique_addresses": 0,
    "native_currency": "string",
    "asset_platform_id": "string",
    "image_small": "string"
  }
}