Endpoint Playground
Test Crawlora's List an OpenSea collection's holders 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>/holders?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 | Holders per page, 1-100 | |
| cursor | string | No | Opaque pagination cursor from a previous next_page_cursor | |
| sort_direction | string | No | ASC | Sort direction by quantity held |
{
"code": 200,
"data": {
"holders": [
{
"account": {
"address": "0x46efbaedc92067e6d60e84ed6395099723252496",
"display_name": "gordongoner",
"image_url": "https://example.com/resource"
},
"quantity": 143
}
],
"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 leaderboard of wallets holding items in the collection, ranked by quantity held, with each holder's address and display name where OpenSea publishes one.
{
"code": 200,
"data": {
"holders": [
{
"account": {
"address": "0x46efbaedc92067e6d60e84ed6395099723252496",
"display_name": "gordongoner",
"image_url": "https://example.com/resource"
},
"quantity": 143
}
],
"next_page_cursor": "sample",
"slug": "boredapeyachtclub"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/opensea/collection/<slug>/holders" \
-H "x-api-key: $CRAWLORA_API_KEY"