Endpoint Playground
Test Crawlora's 1stDibs designers 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/designers" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | No | Category slug from firstdibs-categories |
{
"code": 200,
"msg": "OK",
"data": {
"count": 2,
"designers": [
{
"name": "Chanel",
"slug": "chanel"
},
{
"name": "Gucci",
"slug": "gucci"
}
]
}
}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 designer values discovered from the selected 1stDibs category page. Each slug is valid for firstdibs-search's designer filter.
{
"code": 200,
"msg": "OK",
"data": {
"count": 2,
"designers": [
{
"name": "Chanel",
"slug": "chanel"
},
{
"name": "Gucci",
"slug": "gucci"
}
]
}
}curl "https://api.crawlora.net/api/v1/1stdibs/designers" \
-H "x-api-key: $CRAWLORA_API_KEY"