Endpoint Playground
Test Crawlora's 1stDibs categories 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/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"name": "Shoulder Bags",
"slug": "shoulder-bags",
"url": "https://www.1stdibs.com/fashion/handbags-purses-bags/shoulder-bags/"
}
],
"sorts": [
"recommended",
"newest",
"price-high",
"price-low",
"popular"
],
"price_presets": [
"all price",
"[* TO 999]",
"[* TO 1999]",
"[* TO 4999]",
"[5000 TO *]"
]
}
}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 live handbags category directory, sort keys, price presets, and filter values discovered from 1stDibs. Returned category slugs are valid for firstdibs-search.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"name": "Shoulder Bags",
"slug": "shoulder-bags",
"url": "https://www.1stdibs.com/fashion/handbags-purses-bags/shoulder-bags/"
}
],
"sorts": [
"recommended",
"newest",
"price-high",
"price-low",
"popular"
],
"price_presets": [
"all price",
"[* TO 999]",
"[* TO 1999]",
"[* TO 4999]",
"[5000 TO *]"
]
}
}curl "https://api.crawlora.net/api/v1/1stdibs/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"