Endpoint Playground
Test Crawlora's CoinGecko NFTs API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/coingecko/nfts?vs_currency=btc" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| page | integer | No | Page number, default 1 | |
| limit | integer | No | Rows to return, default 100, max 100 | |
| vs_currency | string | No | btc | Quote currency |
{
"code": 200,
"msg": "OK",
"data": {
"page": 1,
"limit": 100,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/nft?page=1",
"fetched_at": "2026-05-24T00:00:00Z",
"collections": [
{
"rank": 1,
"id": "pudgy-penguins",
"name": "Pudgy Penguins",
"url": "https://www.coingecko.com/en/nft/pudgy-penguins",
"image_url": "https://assets.coingecko.com/nft_contracts/images/38/small/pudgy-penguins.png",
"chain": "Ethereum",
"floor_price_native": 10.5,
"floor_price_usd": 38850,
"change_24h_percent": 1.2,
"change_7d_percent": -3.4,
"change_30d_percent": 8.9,
"market_cap_usd": 388500000,
"market_cap_native": 105000,
"volume_24h_native": 320.4,
"volume_24h_usd": 1185480,
"sales_24h": 42
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns normalized NFT collection rows from the CoinGecko public website NFT table. This endpoint supports the documented `vs_currency` enum.
{
"code": 200,
"msg": "OK",
"data": {
"page": 1,
"limit": 100,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/nft?page=1",
"fetched_at": "2026-05-24T00:00:00Z",
"collections": [
{
"rank": 1,
"id": "pudgy-penguins",
"name": "Pudgy Penguins",
"url": "https://www.coingecko.com/en/nft/pudgy-penguins",
"image_url": "https://assets.coingecko.com/nft_contracts/images/38/small/pudgy-penguins.png",
"chain": "Ethereum",
"floor_price_native": 10.5,
"floor_price_usd": 38850,
"change_24h_percent": 1.2,
"change_7d_percent": -3.4,
"change_30d_percent": 8.9,
"market_cap_usd": 388500000,
"market_cap_native": 105000,
"volume_24h_native": 320.4,
"volume_24h_usd": 1185480,
"sales_24h": 42
}
]
}
}curl "https://api.crawlora.net/api/v1/coingecko/nfts" \
-H "x-api-key: $CRAWLORA_API_KEY"