Endpoint Playground
Test Crawlora's Get a single 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>" \
-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 |
{
"code": 200,
"data": {
"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"
}
]
},
"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 one NFT addressed by chain, contract address, and token id, including its traits, rarity rank, current owner, parent collection, best standing listing, and best standing offer. Call `/opensea/chains` for the accepted `chain` values.
{
"code": 200,
"data": {
"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"
}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/opensea/item/<chain>/<contract_address>/<token_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"