Endpoint Playground
Test Crawlora's List an OpenSea collection's traits 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>/traits" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | OpenSea collection slug | |
| limit | integer | No | Trait types per page, 1-100 | |
| cursor | string | No | Opaque pagination cursor from a previous next_page_cursor |
{
"code": 200,
"data": {
"next_page_cursor": "sample",
"slug": "boredapeyachtclub",
"traits": [
{
"comparison_operator": "sample",
"trait_type": "Background",
"values": [
{
"count": 1170,
"value": "Gray"
}
]
}
]
},
"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 the collection's trait types and the values each takes, with per-value item counts where OpenSea publishes them. Numeric traits carry a comparison operator.
{
"code": 200,
"data": {
"next_page_cursor": "sample",
"slug": "boredapeyachtclub",
"traits": [
{
"comparison_operator": "sample",
"trait_type": "Background",
"values": [
{
"count": 1170,
"value": "Gray"
}
]
}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/opensea/collection/<slug>/traits" \
-H "x-api-key: $CRAWLORA_API_KEY"