Endpoint Playground
Test Crawlora's List items in an OpenSea collection 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>/items?sort_by=PRICE&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 | Items per page, 1-100 | |
| cursor | string | No | Opaque pagination cursor from a previous next_page_cursor | |
| sort_by | string | No | PRICE | Sort field |
| sort_direction | string | No | ASC | Sort direction |
| listed_only | boolean | No | Only return items with a standing listing | |
| traits | string | No | Comma-separated trait_type:value pairs | |
| min_price | number | No | Minimum listing price in the collection's native token | |
| max_price | number | No | Maximum listing price in the collection's native token | |
| min_rarity | integer | No | Minimum rarity rank (1 is rarest) | |
| max_rarity | integer | No | Maximum rarity rank |
{
"code": 200,
"data": {
"items": [
{
"best_listing": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"best_offer": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"chain": "ethereum",
"collection_name": "Bored Ape Yacht Club",
"collection_slug": "boredapeyachtclub",
"contract_address": "sample",
"created_at": "sample",
"description": "sample",
"id": "sample-id",
"image_url": "https://example.com/resource",
"is_fungible": true,
"last_sale": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"last_sale_at": "sample",
"marketplace": "opensea",
"name": "#1",
"owner": {
"address": "0x46efbaedc92067e6d60e84ed6395099723252496",
"display_name": "gordongoner",
"image_url": "https://example.com/resource"
},
"rarity_rank": 1204,
"token_id": "1",
"traits": [
{
"trait_type": "Background",
"value": "Orange"
}
]
}
],
"next_page_cursor": "sample",
"slug": "boredapeyachtclub"
},
"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 a cursor-paginated page of NFTs in a collection with their traits, rarity rank, current owner, best standing listing, and last sale price. Pass `cursor` from `next_page_cursor` to page forward. Narrow the result set with `listed_only`, `traits`, a `min_price`/`max_price` band, or a `min_rarity`/`max_rarity` rank band — the filters combine, so `traits=Fur:Solid Gold&listed_only=true` returns only buyable Solid Gold apes.
{
"code": 200,
"data": {
"items": [
{
"best_listing": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"best_offer": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"chain": "ethereum",
"collection_name": "Bored Ape Yacht Club",
"collection_slug": "boredapeyachtclub",
"contract_address": "sample",
"created_at": "sample",
"description": "sample",
"id": "sample-id",
"image_url": "https://example.com/resource",
"is_fungible": true,
"last_sale": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"last_sale_at": "sample",
"marketplace": "opensea",
"name": "#1",
"owner": {
"address": "0x46efbaedc92067e6d60e84ed6395099723252496",
"display_name": "gordongoner",
"image_url": "https://example.com/resource"
},
"rarity_rank": 1204,
"token_id": "1",
"traits": [
{
"trait_type": "Background",
"value": "Orange"
}
]
}
],
"next_page_cursor": "sample",
"slug": "boredapeyachtclub"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/opensea/collection/<slug>/items" \
-H "x-api-key: $CRAWLORA_API_KEY"