Endpoint Playground
Test Crawlora's The RealReal category taxonomy 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/therealreal/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"id": "329",
"name": "Women",
"permalink": "women",
"count": 2546988,
"children": [
{
"id": "493",
"name": "Handbags",
"permalink": "women/handbags",
"count": 225361,
"children": [
{
"id": "548",
"name": "Backpacks",
"permalink": "women/handbags/backpacks",
"count": 6926
}
]
}
]
}
],
"source_url": "https://www.therealreal.com/shop/women/handbags"
}
}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 RealReal's full category (taxon) browse taxonomy: every department, category, and subcategory, nested, with each entry's id (usable directly against search's category_id), permalink (usable directly against the category endpoint's path), and live matching item count. This is reference data that changes rarely, so responses are cached. Credential-free public data sourced from The RealReal's own server-rendered category page.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"id": "329",
"name": "Women",
"permalink": "women",
"count": 2546988,
"children": [
{
"id": "493",
"name": "Handbags",
"permalink": "women/handbags",
"count": 225361,
"children": [
{
"id": "548",
"name": "Backpacks",
"permalink": "women/handbags/backpacks",
"count": 6926
}
]
}
]
}
],
"source_url": "https://www.therealreal.com/shop/women/handbags"
}
}curl "https://api.crawlora.net/api/v1/therealreal/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"