Endpoint Playground
Test Crawlora's Get a public OpenSea profile 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/profile/<identifier>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| identifier (path) | string | Yes | Wallet address, ENS name, or OpenSea username |
{
"code": 200,
"data": {
"address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
"banner_image_url": "https://example.com/resource",
"display_name": "vitalik.eth",
"external_url": "https://example.com/resource",
"image_url": "https://example.com/resource",
"is_verified": true,
"kind": "WALLET",
"twitter_username": "sample",
"username": "sample"
},
"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 public profile for a wallet, resolved from a wallet address, an ENS name, or an OpenSea username: display name, avatar and banner imagery, verification flag, and linked social handles. Wallet balances, portfolio value, and profit/loss are deliberately not exposed.
{
"code": 200,
"data": {
"address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
"banner_image_url": "https://example.com/resource",
"display_name": "vitalik.eth",
"external_url": "https://example.com/resource",
"image_url": "https://example.com/resource",
"is_verified": true,
"kind": "WALLET",
"twitter_username": "sample",
"username": "sample"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/opensea/profile/<identifier>" \
-H "x-api-key: $CRAWLORA_API_KEY"