Endpoint Playground
Test Crawlora's OpenSea Collection Offers 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>/offers?sort_direction=ASC" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | OpenSea collection slug | |
| limit | integer | No | Price levels per page, 1-100 | |
| cursor | string | No | Opaque pagination cursor from a previous next_page_cursor | |
| sort_direction | string | No | ASC | Sort direction by offer price |
{
"code": 200,
"data": {
"next_page_cursor": "sample",
"offers": [
{
"id": "sample-id",
"price": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"total_offers": 1
}
],
"slug": "boredapeyachtclub",
"total_currency": "WETH",
"total_offers": 314,
"total_value_token": 55.0032,
"total_value_usd": 135216.02
},
"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 the collection-wide offer book as price levels: how many standing offers sit at each price per item, plus the aggregate offer count and total value across the whole collection. Offers are sorted by price.
{
"code": 200,
"data": {
"next_page_cursor": "sample",
"offers": [
{
"id": "sample-id",
"price": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"total_offers": 1
}
],
"slug": "boredapeyachtclub",
"total_currency": "WETH",
"total_offers": 314,
"total_value_token": 55.0032,
"total_value_usd": 135216.02
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/opensea/collection/<slug>/offers" \
-H "x-api-key: $CRAWLORA_API_KEY"