Endpoint Playground
Test Crawlora's List the NFTs a wallet holds 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/profile/<identifier>/items?sort_direction=ASC" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| identifier (path) | string | Yes | Wallet address, ENS name, or OpenSea username | |
| limit | integer | No | Items per page, 1-100 | |
| cursor | string | No | Opaque pagination cursor from a previous next_page_cursor | |
| sort_direction | string | No | ASC | Sort direction by received date |
{
"code": 200,
"data": {
"address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
"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"
}
]
}
],
"next_page_cursor": "sample",
"total_items": 3441
},
"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 NFTs held by a wallet, with each item's collection, rarity rank, and best standing listing. Accepts a wallet address, ENS name, or OpenSea username; a non-address identifier costs one extra resolution lookup.
{
"code": 200,
"data": {
"address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
"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"
}
]
}
],
"next_page_cursor": "sample",
"total_items": 3441
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/opensea/profile/<identifier>/items" \
-H "x-api-key: $CRAWLORA_API_KEY"