API Documentation
⌘K
API Key
Get free key GET
/api/1/nft/listNFT Collections List API
Returns a paginated list of NFT collections ranked by market cap, with floor price, volume, and holder data
Parameters
5offsetnumberPagination offset (default 0)
limitnumberNumber of results (default 50, max 200)
sortstringSort field: market_cap, volume_24h, floor_price (default market_cap)
orderstringSort order: desc, asc (default desc)
platformstringFilter 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"
}
}