Endpoint Playground
Test Crawlora's Get an OpenSea collection 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/opensea/collection/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | OpenSea collection slug |
{
"code": 200,
"data": {
"banner_image_url": "https://example.com/resource",
"category": "PFPS",
"chain": "ethereum",
"contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
"created_at": "2021-04-22T23:14:24.000Z",
"description": "sample",
"discord_url": "https://example.com/resource",
"external_url": "https://example.com/resource",
"floor_price": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"id": "46188685bcac4206ace63c9d017abbb7",
"image_url": "https://example.com/resource",
"instagram_username": "sample",
"is_verified": true,
"name": "Bored Ape Yacht Club",
"slug": "boredapeyachtclub",
"stats": {
"listed_item_count": 298,
"one_day": {
"floor_price_change": 0.0065,
"sales": 42,
"volume_native": 318.4,
"volume_usd": 782344.1
},
"one_hour": {
"floor_price_change": 0.0065,
"sales": 42,
"volume_native": 318.4,
"volume_usd": 782344.1
},
"sales": 57369,
"seven_days": {
"floor_price_change": 0.0065,
"sales": 42,
"volume_native": 318.4,
"volume_usd": 782344.1
},
"thirty_days": {
"floor_price_change": 0.0065,
"sales": 42,
"volume_native": 318.4,
"volume_usd": 782344.1
},
"total_supply": 9998,
"unique_item_count": 9998,
"volume_currency": "ETH",
"volume_native": 1580610.96,
"volume_usd": 3756342321.66
},
"top_offer": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"twitter_username": "sample"
},
"msg": "OK"
}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 public marketplace metadata and trading statistics for one NFT collection: name, description, imagery, verification flag, contract address and chain, social links, current floor price and top collection offer, plus lifetime and rolling one-hour/one-day/seven-day/thirty-day sales, volume, and floor-price change. Delisted and blacklisted collections return 404 rather than an empty payload.
{
"code": 200,
"data": {
"banner_image_url": "https://example.com/resource",
"category": "PFPS",
"chain": "ethereum",
"contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
"created_at": "2021-04-22T23:14:24.000Z",
"description": "sample",
"discord_url": "https://example.com/resource",
"external_url": "https://example.com/resource",
"floor_price": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"id": "46188685bcac4206ace63c9d017abbb7",
"image_url": "https://example.com/resource",
"instagram_username": "sample",
"is_verified": true,
"name": "Bored Ape Yacht Club",
"slug": "boredapeyachtclub",
"stats": {
"listed_item_count": 298,
"one_day": {
"floor_price_change": 0.0065,
"sales": 42,
"volume_native": 318.4,
"volume_usd": 782344.1
},
"one_hour": {
"floor_price_change": 0.0065,
"sales": 42,
"volume_native": 318.4,
"volume_usd": 782344.1
},
"sales": 57369,
"seven_days": {
"floor_price_change": 0.0065,
"sales": 42,
"volume_native": 318.4,
"volume_usd": 782344.1
},
"thirty_days": {
"floor_price_change": 0.0065,
"sales": 42,
"volume_native": 318.4,
"volume_usd": 782344.1
},
"total_supply": 9998,
"unique_item_count": 9998,
"volume_currency": "ETH",
"volume_native": 1580610.96,
"volume_usd": 3756342321.66
},
"top_offer": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"twitter_username": "sample"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/opensea/collection/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"