Endpoint Playground
Test Crawlora's OpenSea Collection Item Search 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>/search-items?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | OpenSea collection slug | |
| query | string | Yes | Search keyword | |
| limit | integer | No | Results per page, 1-100 |
{
"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"
}
]
}
],
"query": "gold",
"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.
Runs a keyword search scoped to one collection — matching on item name and trait values — and returns the hits with rarity rank and best standing listing. Narrower than `/opensea/collection/{slug}/items`, which lists everything.
{
"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"
}
]
}
],
"query": "gold",
"slug": "boredapeyachtclub"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/opensea/collection/<slug>/search-items?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"