Endpoint Playground
Test Crawlora's 1stDibs product 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/1stdibs/product?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | 1stDibs product URL |
{
"code": 200,
"msg": "OK",
"data": {
"id": "https://www.1stdibs.com/fashion/handbags-purses-bags/id-v_22700192/",
"name": "Designer handbag",
"brand": "Chanel",
"price": 5857.66,
"currency": "USD",
"in_stock": true,
"images": [
"https://a.1stdibscdn.com/image.jpg"
]
}
}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 public product detail, pricing, availability, brand, category, description, and images for a 1stDibs product URL.
{
"code": 200,
"msg": "OK",
"data": {
"id": "https://www.1stdibs.com/fashion/handbags-purses-bags/id-v_22700192/",
"name": "Designer handbag",
"brand": "Chanel",
"price": 5857.66,
"currency": "USD",
"in_stock": true,
"images": [
"https://a.1stdibscdn.com/image.jpg"
]
}
}curl "https://api.crawlora.net/api/v1/1stdibs/product?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"