API Documentation

⌘K
GET/api/1/nft/search/{query}

NFT Collection Search API

Search NFT collections by name or symbol

Parameters

2
limitnumber
query

Max results (default 20, max 50)

querystringrequired
path

Search query (name or symbol)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/nft/search/Apple?limit=10' \
  -H 'Accept: application/json'
200 Response
[
  {
  "id": "string",
  "name": "string",
  "symbol": "string",
  "floor_price_usd": 0,
  "market_cap_usd": 0,
  "image_small": "string",
  "asset_platform_id": "string"
}
]