The RealReal API endpoint
Use Crawlora's The RealReal search API to extract supported public The RealReal data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/therealreal/searchSearches The RealReal's authenticated luxury resale catalog by keyword, optionally combined with category, designer, condition-grade, and price-range filters, returning normalized listing summaries (name, designer, condition, price, images) plus the total matching count and an opaque pagination cursor. 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 search page. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| query | string | Yes | Free-text keyword search | ||
| category_id | string | No | Category (taxon) id, from the categories endpoint's id field | ||
| designer_id | string | No | Designer id, from the designers endpoint's id field | ||
| condition_id | string | No | Condition grade id, from the conditions endpoint's id field | ||
| price_from | number | No | Minimum price in USD | ||
| price_to | number | No | Maximum price in USD | ||
| 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 | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/therealreal/search?query=coffee&on_sale=true&available=true" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Some targets require real browser execution because the data is loaded through JavaScript, dynamic rendering, or interaction-like browser behavior.
For supported endpoints, Crawlora can route requests through a managed browser cluster. This allows Crawlora to execute JavaScript, load dynamic content, apply browser-level request behavior, and normalize the rendered result into JSON.
You do not need to operate your own Playwright, Puppeteer, Chrome, proxy, queue, or retry infrastructure.
- `total` reflects The RealReal's full matching-result count for the applied filters, not just `len(listings)`. - `next_after` is an opaque, server-issued pagination cursor. Pass it back as `after` (with the same `query`/filters) to fetch the next page. `has_more` is `false` once there is nothing further to page through. - A search with no matching listings returns `200` with `"listings": []`. - A missing `query` returns `400` before any upstream request is made. - `price_from` greater than `price_to` returns `400`. Example response: ```json { "code": 200, "msg": "OK", "data": { "total": 3643, "has_more": true, "next_after": "YXJyYXljb25uZWN0aW9uOjExOQ==", "listings": [ { "id": "54388578", "name": "Denim Pearl Crush Wallet On Chain", "sku": "CHA1494621", "designer": "Chanel", "designer_slug": "chanel", "condition": "Very Good", "color": "Blue", "gender": "Women", "price_usd": 3800, "original_price_usd": 3800, "available": true, "image_url": "https://product-images.therealreal.com/CHA1494621_1_enlarged.jpg", "url": "https://www.therealreal.com/products/women/handbags/crossbody-bags/chanel-denim-pearl-crush-wallet-on-chain-wdqhu" } ], "source_url": "https://www.therealreal.com/products?keywords=bag" } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"total": 3643,
"has_more": true,
"next_after": "YXJyYXljb25uZWN0aW9uOjExOQ==",
"listings": [
{
"id": "54388578",
"name": "Denim Pearl Crush Wallet On Chain",
"sku": "CHA1494621",
"designer": "Chanel",
"designer_slug": "chanel",
"condition": "Very Good",
"color": "Blue",
"gender": "Women",
"price_usd": 3800,
"original_price_usd": 3800,
"available": true,
"image_url": "https://product-images.therealreal.com/CHA1494621_1_enlarged.jpg",
"url": "https://www.therealreal.com/products/women/handbags/crossbody-bags/chanel-denim-pearl-crush-wallet-on-chain-wdqhu"
}
],
"source_url": "https://www.therealreal.com/products?keywords=bag"
}
}Request schema
No body schema
Response schema
#/definitions/therealreal.searchResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | therealreal.ProductsResponse | No | ||||
| data.has_more | boolean | No | true | |||
| data.listings | array | No | ||||
| data.listings[].available | boolean | No | true | |||
| data.listings[].color | string | No | Blue | |||
| data.listings[].condition | string | No | Very Good | |||
| data.listings[].designer | string | No | Chanel | |||
| data.listings[].designer_slug | string | No | chanel | |||
| data.listings[].gender | string | No | Women | |||
| data.listings[].id | string | No | 54388578 | |||
| data.listings[].image_url | string | No | https://product-images.therealreal.com/CHA1494621_1_enlarged.jpg | |||
| data.listings[].images | array | No | ||||
| data.listings[].name | string | No | Denim Pearl Crush Wallet On Chain | |||
| data.listings[].original_price_usd | number | No | 3800 | |||
| data.listings[].price_usd | number | No | 3800 | |||
| data.listings[].sku | string | No | CHA1494621 | |||
| data.listings[].url | string | No | https://www.therealreal.com/products/women/handbags/crossbody-bags/chanel-denim-pearl-crush-wallet-on-chain-wdqhu | |||
| data.listings[].waitlisted | boolean | No | false | |||
| data.next_after | string | No | YXJyYXljb25uZWN0aW9uOjExOQ== | |||
| data.source_url | string | No | ||||
| data.total | integer | No | 404167 | |||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/therealreal/search?query=coffee&on_sale=true&available=true" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms