Endpoint Playground
Test Crawlora's List the owners of an OpenSea NFT 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/item/<chain>/<contract_address>/<token_id>/owners" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| chain (path) | string | Yes | Chain identifier from /opensea/chains | |
| contract_address (path) | string | Yes | NFT contract address | |
| token_id (path) | string | Yes | Token id within the contract | |
| limit | integer | No | Owners per page, 1-100 | |
| cursor | string | No | Opaque pagination cursor from a previous next_page_cursor |
{
"code": 200,
"data": {
"chain": "ethereum",
"contract_address": "sample",
"has_more": true,
"next_page_cursor": "sample",
"owners": [
{
"account": {
"address": "0x46efbaedc92067e6d60e84ed6395099723252496",
"display_name": "gordongoner",
"image_url": "https://example.com/resource"
},
"quantity": "1"
}
],
"token_id": "1",
"total_owners": 1
},
"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 wallets holding one NFT plus the total owner count. ERC-721 items resolve to a single owner; ERC-1155 items can have many, each with the quantity held.
{
"code": 200,
"data": {
"chain": "ethereum",
"contract_address": "sample",
"has_more": true,
"next_page_cursor": "sample",
"owners": [
{
"account": {
"address": "0x46efbaedc92067e6d60e84ed6395099723252496",
"display_name": "gordongoner",
"image_url": "https://example.com/resource"
},
"quantity": "1"
}
],
"token_id": "1",
"total_owners": 1
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/opensea/item/<chain>/<contract_address>/<token_id>/owners" \
-H "x-api-key: $CRAWLORA_API_KEY"