Endpoint Playground
Test Crawlora's OpenSea Collection Rarest Items 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>/rarest-items" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | OpenSea collection slug |
{
"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"
}
]
}
],
"shelf": "best_deals",
"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 the rarest items in a collection that currently have a standing listing, each with its rarity rank, traits, and asking price. Unlike the trait endpoints, this shelf is scoped to what is actually buyable right now.
{
"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"
}
]
}
],
"shelf": "best_deals",
"slug": "boredapeyachtclub"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/opensea/collection/<slug>/rarest-items" \
-H "x-api-key: $CRAWLORA_API_KEY"