Endpoint Playground
Test Crawlora's OpenSea Marketplace Activity 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/activity?event_types=SALE" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| 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 live cross-collection activity feed — every sale, listing, offer, transfer, and mint OpenSea indexes, newest first, with the collection each event belongs to. Filter with `event_types` for a marketplace-wide trade tape.
{
"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/activity" \
-H "x-api-key: $CRAWLORA_API_KEY"