Endpoint Playground
Test Crawlora's OpenSea Collection Social Proof 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>/social-proof" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | OpenSea collection slug |
{
"code": 200,
"data": {
"notable_collectors": [
{
"address": "0x46efbaedc92067e6d60e84ed6395099723252496",
"display_name": "gordongoner",
"image_url": "https://example.com/resource"
}
],
"slug": "boredapeyachtclub",
"social_count": 5605
},
"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 how many accounts follow or watch a collection, plus the notable collectors OpenSea highlights for it. Useful as a demand signal alongside the trading stats.
{
"code": 200,
"data": {
"notable_collectors": [
{
"address": "0x46efbaedc92067e6d60e84ed6395099723252496",
"display_name": "gordongoner",
"image_url": "https://example.com/resource"
}
],
"slug": "boredapeyachtclub",
"social_count": 5605
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/opensea/collection/<slug>/social-proof" \
-H "x-api-key: $CRAWLORA_API_KEY"