Endpoint Playground
Test Crawlora's 1stDibs search 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/search?price=all+price&sort=recommended&per_page=60" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Free-text search | |
| category | string | No | Category slug from firstdibs-categories | |
| designer | string | No | Designer slug from firstdibs-designers | |
| color | string | No | Color value | |
| period | string | No | Period value | |
| location | string | No | Item location | |
| gender | string | No | Gender value | |
| origin | string | No | Place-of-origin value | |
| price | string | No | all price | Price preset |
| price_min | number | No | Minimum price | |
| price_max | number | No | Maximum price | |
| on_sale | boolean | No | On-sale listings only | |
| measurements | boolean | No | Listings with measurements | |
| this_week | boolean | No | Listings added this week | |
| returnable | boolean | No | Returnable items only | |
| recognized_seller | boolean | No | Recognized seller listings only | |
| top_seller | boolean | No | Top seller listings only | |
| sort | string | No | recommended | Sort |
| page | integer | No | 1-based page | |
| per_page | integer | No | 60 | Results per page |
{
"code": 200,
"msg": "OK",
"data": {
"query": "gucci",
"page": 1,
"per_page": 60,
"count": 1,
"products": [
{
"id": "https://www.1stdibs.com/fashion/handbags-purses-bags/top-handle-bags/gucci-bag/id-v_123/",
"url": "https://www.1stdibs.com/fashion/handbags-purses-bags/top-handle-bags/gucci-bag/id-v_123/",
"name": "Gucci bag",
"brand": "Gucci",
"price": 1200,
"currency": "USD",
"in_stock": true
}
]
}
}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.
Searches or browses 1stDibs handbags and purses with category, designer, price, sale, color, period, location, gender, origin, seller, and sort filters.
{
"code": 200,
"msg": "OK",
"data": {
"query": "gucci",
"page": 1,
"per_page": 60,
"count": 1,
"products": [
{
"id": "https://www.1stdibs.com/fashion/handbags-purses-bags/top-handle-bags/gucci-bag/id-v_123/",
"url": "https://www.1stdibs.com/fashion/handbags-purses-bags/top-handle-bags/gucci-bag/id-v_123/",
"name": "Gucci bag",
"brand": "Gucci",
"price": 1200,
"currency": "USD",
"in_stock": true
}
]
}
}curl "https://api.crawlora.net/api/v1/1stdibs/search" \
-H "x-api-key: $CRAWLORA_API_KEY"