Endpoint Playground
Test Crawlora's OpenSea NFT Listings 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>/listings?sort_direction=ASC" \
-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 | |
| limit | integer | No | Listings per page, 1-100 | |
| cursor | string | No | Opaque pagination cursor from a previous next_page_cursor | |
| sort_direction | string | No | ASC | Sort direction by price |
{
"code": 200,
"data": {
"chain": "ethereum",
"contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
"next_page_cursor": "sample",
"orders": [
{
"end_time": "sample",
"id": "sample-id",
"maker": {
"address": "0x46efbaedc92067e6d60e84ed6395099723252496",
"display_name": "gordongoner",
"image_url": "https://example.com/resource"
},
"marketplace": "opensea",
"price": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"quantity": "1",
"start_time": "sample"
}
],
"token_id": "1"
},
"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 every standing sell order for one NFT, with price, quantity, validity window, marketplace, and the maker's wallet. An item with no active listings returns an empty list rather than a 404.
{
"code": 200,
"data": {
"chain": "ethereum",
"contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
"next_page_cursor": "sample",
"orders": [
{
"end_time": "sample",
"id": "sample-id",
"maker": {
"address": "0x46efbaedc92067e6d60e84ed6395099723252496",
"display_name": "gordongoner",
"image_url": "https://example.com/resource"
},
"marketplace": "opensea",
"price": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"quantity": "1",
"start_time": "sample"
}
],
"token_id": "1"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/opensea/item/<chain>/<contract_address>/<token_id>/listings" \
-H "x-api-key: $CRAWLORA_API_KEY"