Endpoint Playground
Test Crawlora's The RealReal listing detail 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/listing?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Full product URL, as returned in a search/category/designer response's url field |
{
"code": 200,
"msg": "OK",
"data": {
"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,
"images": [
"https://product-images.therealreal.com/CHA1494621_1_enlarged.jpg",
"https://product-images.therealreal.com/CHA1494621_2_enlarged.jpg"
],
"url": "https://www.therealreal.com/products/women/handbags/crossbody-bags/chanel-denim-pearl-crush-wallet-on-chain-wdqhu",
"description": "Chanel Crossbody Bag, Blue Denim, Tweed Pattern...",
"condition_detail": "Minor discoloration throughout; minor discoloration at hardware; minor scuff at corner.",
"category_name": "Women",
"category_label": "Women's Fashion & Accessories",
"measurements": {
"Height": "5\"",
"Width": "7.5\"",
"Shoulder Strap Drop": "19\""
},
"source_url": "https://www.therealreal.com/products/women/handbags/crossbody-bags/chanel-denim-pearl-crush-wallet-on-chain-wdqhu"
}
}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 single normalized The RealReal listing: description, condition detail, category context, and measurements, plus the shared summary fields (name, designer, condition, price, images). Looked up by the listing's full product URL, as returned in a search/category/designer response's url field. Credential-free public data sourced from The RealReal's own server-rendered listing page.
{
"code": 200,
"msg": "OK",
"data": {
"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,
"images": [
"https://product-images.therealreal.com/CHA1494621_1_enlarged.jpg",
"https://product-images.therealreal.com/CHA1494621_2_enlarged.jpg"
],
"url": "https://www.therealreal.com/products/women/handbags/crossbody-bags/chanel-denim-pearl-crush-wallet-on-chain-wdqhu",
"description": "Chanel Crossbody Bag, Blue Denim, Tweed Pattern...",
"condition_detail": "Minor discoloration throughout; minor discoloration at hardware; minor scuff at corner.",
"category_name": "Women",
"category_label": "Women's Fashion & Accessories",
"measurements": {
"Height": "5\"",
"Width": "7.5\"",
"Shoulder Strap Drop": "19\""
},
"source_url": "https://www.therealreal.com/products/women/handbags/crossbody-bags/chanel-denim-pearl-crush-wallet-on-chain-wdqhu"
}
}curl "https://api.crawlora.net/api/v1/therealreal/listing?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"