Endpoint Playground
Test Crawlora's The RealReal designer 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/designer?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | Yes | Designer slug, from the designers endpoint's slug 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": 146120,
"has_more": true,
"next_after": "YXJyYXljb25uZWN0aW9uOjExOQ==",
"listings": [
{
"id": "54388579",
"name": "GG Marmont Small Shoulder Bag",
"designer": "Gucci",
"condition": "Excellent",
"price_usd": 950,
"original_price_usd": 1980,
"available": true,
"url": "https://www.therealreal.com/products/women/handbags/shoulder-bags/gucci-gg-marmont-small-shoulder-bag-abcde"
}
],
"source_url": "https://www.therealreal.com/designers/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 a page of normalized The RealReal listings browsed by designer slug, e.g. gucci. 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 designer page.
{
"code": 200,
"msg": "OK",
"data": {
"total": 146120,
"has_more": true,
"next_after": "YXJyYXljb25uZWN0aW9uOjExOQ==",
"listings": [
{
"id": "54388579",
"name": "GG Marmont Small Shoulder Bag",
"designer": "Gucci",
"condition": "Excellent",
"price_usd": 950,
"original_price_usd": 1980,
"available": true,
"url": "https://www.therealreal.com/products/women/handbags/shoulder-bags/gucci-gg-marmont-small-shoulder-bag-abcde"
}
],
"source_url": "https://www.therealreal.com/designers/gucci"
}
}curl "https://api.crawlora.net/api/v1/therealreal/designer?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"