Endpoint Playground
Test Crawlora's OpenSea Collection 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/collection/<slug>/activity?event_types=SALE" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | OpenSea collection slug | |
| 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 a cursor-paginated feed of marketplace events for a collection — sales, listings, offers, transfers, mints, and collection/trait offers — with the counterparties, price, marketplace, and transaction hash. Filter with `event_types` to narrow the feed, for example `event_types=SALE` for a sales-only history.
{
"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/collection/<slug>/activity" \
-H "x-api-key: $CRAWLORA_API_KEY"