Endpoint Playground
Test Crawlora's CoinGecko NFT Category 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/nft/category/<slug>?vs_currency=btc" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | CoinGecko NFT category slug such as metaverse | |
| 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": {
"slug": "metaverse",
"name": "Metaverse",
"page": 1,
"limit": 100,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/nft/categories/metaverse?page=1",
"fetched_at": "2026-05-24T00:00:00Z",
"collections": [
{
"rank": 1,
"id": "pudgy-penguins",
"name": "Pudgy Penguins",
"chain": "Ethereum",
"floor_price_usd": 38850
}
]
}
}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 a CoinGecko public NFT category page. This endpoint supports the documented `vs_currency` enum.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "metaverse",
"name": "Metaverse",
"page": 1,
"limit": 100,
"vs_currency": "usd",
"source_url": "https://www.coingecko.com/en/nft/categories/metaverse?page=1",
"fetched_at": "2026-05-24T00:00:00Z",
"collections": [
{
"rank": 1,
"id": "pudgy-penguins",
"name": "Pudgy Penguins",
"chain": "Ethereum",
"floor_price_usd": 38850
}
]
}
}curl "https://api.crawlora.net/api/v1/coingecko/nft/category/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"