Endpoint Playground
Test Crawlora's OpenSea Collections Lookup 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/collections?slugs=<slugs>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slugs | string | Yes | Comma-separated collection slugs, at most 50 |
{
"code": 200,
"data": {
"collections": [
{
"category": "PFPS",
"chain": "ethereum",
"contract_address": "sample",
"floor_price": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"id": "sample-id",
"image_url": "https://example.com/resource",
"is_verified": true,
"markets": [
{
"listed_item_count": 190,
"marketplace": "opensea",
"name": "OpenSea"
}
],
"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
}
}
]
},
"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.
Resolves up to 50 collections in a single call from a comma-separated `slugs` list, returning each one's floor price, verification flag, headline stats, and per-marketplace listed-item counts. Use this instead of calling `/opensea/collection/{slug}` in a loop — it costs one upstream request regardless of how many slugs you pass. The `markets` array shows how many items are listed on OpenSea versus other marketplaces for the same collection.
{
"code": 200,
"data": {
"collections": [
{
"category": "PFPS",
"chain": "ethereum",
"contract_address": "sample",
"floor_price": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"id": "sample-id",
"image_url": "https://example.com/resource",
"is_verified": true,
"markets": [
{
"listed_item_count": 190,
"marketplace": "opensea",
"name": "OpenSea"
}
],
"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
}
}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/opensea/collections?slugs=<slugs>" \
-H "x-api-key: $CRAWLORA_API_KEY"