Endpoint Playground
Test Crawlora's List one OpenSea NFT's event history 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>/activity?event_types=SALE" \
-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 | Events per page, 1-100 | |
| cursor | string | No | Opaque pagination cursor from a previous next_page_cursor | |
| event_types | string | No | SALE | Comma-separated event types |
{
"code": 200,
"data": {
"events": [
{
"chain": "sample",
"collection_name": "sample",
"collection_slug": "boredapeyachtclub",
"contract_address": "sample",
"event_time": "2026-08-30T08:38:47.235Z",
"from": {
"address": "0x46efbaedc92067e6d60e84ed6395099723252496",
"display_name": "gordongoner",
"image_url": "https://example.com/resource"
},
"id": "sample-id",
"item_image_url": "https://example.com/resource",
"item_name": "sample",
"marketplace": "opensea",
"price": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"quantity": "1",
"sale_type": "sample",
"to": {
"address": "0x46efbaedc92067e6d60e84ed6395099723252496",
"display_name": "gordongoner",
"image_url": "https://example.com/resource"
},
"token_id": "3766",
"transaction_hash": "sample",
"type": "Sale"
}
],
"next_page_cursor": "sample",
"slug": "boredapeyachtclub",
"token_id": "sample-id"
},
"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 marketplace event history for a single NFT — sales, listings, offers, transfers, and mints — with counterparties, price, and transaction hash. Filter with `event_types`, for example `event_types=SALE,TRANSFER` for an ownership trail.
{
"code": 200,
"data": {
"events": [
{
"chain": "sample",
"collection_name": "sample",
"collection_slug": "boredapeyachtclub",
"contract_address": "sample",
"event_time": "2026-08-30T08:38:47.235Z",
"from": {
"address": "0x46efbaedc92067e6d60e84ed6395099723252496",
"display_name": "gordongoner",
"image_url": "https://example.com/resource"
},
"id": "sample-id",
"item_image_url": "https://example.com/resource",
"item_name": "sample",
"marketplace": "opensea",
"price": {
"amount": 7.85,
"chain": "ethereum",
"contract_address": "0x0000000000000000000000000000000000000000",
"currency": "ETH",
"usd": 19295.3
},
"quantity": "1",
"sale_type": "sample",
"to": {
"address": "0x46efbaedc92067e6d60e84ed6395099723252496",
"display_name": "gordongoner",
"image_url": "https://example.com/resource"
},
"token_id": "3766",
"transaction_hash": "sample",
"type": "Sale"
}
],
"next_page_cursor": "sample",
"slug": "boredapeyachtclub",
"token_id": "sample-id"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/opensea/item/<chain>/<contract_address>/<token_id>/activity" \
-H "x-api-key: $CRAWLORA_API_KEY"