Endpoint Playground
Test Crawlora's OpenSea Collection Order Book 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>/depth" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | OpenSea collection slug |
{
"code": 200,
"data": {
"chain": "sample",
"contract_address": "sample",
"listings": [
{
"price": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"quantity": 2
}
],
"offers": [
{
"price": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"quantity": 2
}
],
"slug": "boredapeyachtclub",
"token_id": "sample-id"
},
"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 full bid/ask ladder for a collection: resting listings and offers grouped into price levels with the quantity available at each. This is the depth chart behind OpenSea's own collection page, and it is the fastest way to see how thin or deep the book is above the floor.
{
"code": 200,
"data": {
"chain": "sample",
"contract_address": "sample",
"listings": [
{
"price": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"quantity": 2
}
],
"offers": [
{
"price": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"quantity": 2
}
],
"slug": "boredapeyachtclub",
"token_id": "sample-id"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/opensea/collection/<slug>/depth" \
-H "x-api-key: $CRAWLORA_API_KEY"