Endpoint Playground
Test Crawlora's Get an OpenSea NFT's 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/item/<chain>/<contract_address>/<token_id>/depth" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| chain (path) | string | Yes | Chain identifier from /opensea/chains | |
| contract_address (path) | string | Yes | NFT contract address | |
| token_id (path) | string | Yes | Token id within the contract |
{
"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 bid/ask ladder for a single NFT: resting listings and offers grouped into price levels with the quantity at each. Useful for ERC-1155 items where many units trade at different prices.
{
"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/item/<chain>/<contract_address>/<token_id>/depth" \
-H "x-api-key: $CRAWLORA_API_KEY"