Endpoint Playground
Test Crawlora's OpenSea Collection Trait Offers 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>/trait-offers?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 | Price levels per page, 1-100 | |
| cursor | string | No | Opaque pagination cursor from a previous next_page_cursor | |
| sort_direction | string | No | ASC | Sort direction by offer price |
{
"code": 200,
"data": {
"next_page_cursor": "sample",
"offers": [
{
"id": "sample-id",
"price": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"total_offers": 1,
"trait_type": "Fur",
"trait_value": "Solid Gold"
}
],
"slug": "boredapeyachtclub",
"total_currency": "WETH",
"total_offers": 6,
"total_value_token": 96.13,
"total_value_usd": 96.13
},
"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 standing offers scoped to a specific trait value rather than the whole collection, as price levels with the trait type and value attached. Useful for pricing rare-trait items against the collection floor.
{
"code": 200,
"data": {
"next_page_cursor": "sample",
"offers": [
{
"id": "sample-id",
"price": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"total_offers": 1,
"trait_type": "Fur",
"trait_value": "Solid Gold"
}
],
"slug": "boredapeyachtclub",
"total_currency": "WETH",
"total_offers": 6,
"total_value_token": 96.13,
"total_value_usd": 96.13
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/opensea/collection/<slug>/trait-offers" \
-H "x-api-key: $CRAWLORA_API_KEY"