Endpoint Playground
Test Crawlora's The RealReal category browse 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/category?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | Yes | Category permalink path, from the categories endpoint's permalink field | |
| on_sale | boolean | No | Only return items currently marked down from their original price | |
| available | boolean | No | Only return items currently available to purchase (excludes sold and waitlisted items) | |
| after | string | No | Opaque pagination cursor from a previous response's next_after. Omit for the first page |
{
"code": 200,
"msg": "OK",
"data": {
"total": 225361,
"has_more": true,
"next_after": "YXJyYXljb25uZWN0aW9uOjExOQ==",
"listings": [
{
"id": "54388578",
"name": "Denim Pearl Crush Wallet On Chain",
"designer": "Chanel",
"condition": "Very Good",
"price_usd": 3800,
"available": true,
"url": "https://www.therealreal.com/products/women/handbags/crossbody-bags/chanel-denim-pearl-crush-wallet-on-chain-wdqhu"
}
],
"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 a page of normalized The RealReal listings browsed by category (taxon) permalink path, e.g. women/handbags. Pass a previous response's next_after back as after to fetch the next page. Credential-free public data sourced from The RealReal's own server-rendered category page.
{
"code": 200,
"msg": "OK",
"data": {
"total": 225361,
"has_more": true,
"next_after": "YXJyYXljb25uZWN0aW9uOjExOQ==",
"listings": [
{
"id": "54388578",
"name": "Denim Pearl Crush Wallet On Chain",
"designer": "Chanel",
"condition": "Very Good",
"price_usd": 3800,
"available": true,
"url": "https://www.therealreal.com/products/women/handbags/crossbody-bags/chanel-denim-pearl-crush-wallet-on-chain-wdqhu"
}
],
"source_url": "https://www.therealreal.com/shop/women/handbags"
}
}curl "https://api.crawlora.net/api/v1/therealreal/category?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"