Endpoint Playground
Test Crawlora's The RealReal Similar Items 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/similar?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| product_id | string | Yes | The RealReal numeric product id, from a search/category/designer/listing/collection response's id field |
{
"code": 200,
"msg": "OK",
"data": {
"listings": [
{
"id": "47942591",
"name": "Shadow Denim Wallet On Chain",
"sku": "CHA1343119",
"designer": "Chanel",
"designer_slug": "chanel",
"price_usd": 3127.5,
"original_price_usd": 3475,
"available": true,
"image_url": "https://product-images.therealreal.com/CHA1343119_1_enlarged.jpg",
"url": "https://www.therealreal.com/products/women/handbags/crossbody-bags/chanel-shadow-denim-wallet-on-chain-sjkqn"
}
],
"source_url": "https://api.therealreal.com/graphql"
}
}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 own "Similar Items" visual-similarity recommendations for one product, looked up by the product's numeric id (from any other The RealReal endpoint's listing response id field). Credential-free public data sourced from The RealReal's own first-party catalog API.
{
"code": 200,
"msg": "OK",
"data": {
"listings": [
{
"id": "47942591",
"name": "Shadow Denim Wallet On Chain",
"sku": "CHA1343119",
"designer": "Chanel",
"designer_slug": "chanel",
"price_usd": 3127.5,
"original_price_usd": 3475,
"available": true,
"image_url": "https://product-images.therealreal.com/CHA1343119_1_enlarged.jpg",
"url": "https://www.therealreal.com/products/women/handbags/crossbody-bags/chanel-shadow-denim-wallet-on-chain-sjkqn"
}
],
"source_url": "https://api.therealreal.com/graphql"
}
}curl "https://api.crawlora.net/api/v1/therealreal/similar?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"