Endpoint Playground
Test Crawlora's Rebag Product 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/rebag/products/<handle>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| handle (path) | string | Yes | Product handle |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://shop.rebag.com",
"source_url": "https://shop.rebag.com",
"product": {
"id": "9103492219057",
"handle": "handbags-louis-vuitton-saint-jacques-handbag-epi-leather-gm4453161",
"title": "Saint Jacques Handbag Epi Leather GM",
"price": 175,
"images": [
{
"url": "https://cdn.shopify.com/s/files/1/0384/0161/files/445316-1_20Louis_20Vuitton_20Saint_20Jacques_20Handbag_20Epi_20Leather_20GM_2D_0002.jpg?v=1786126659"
}
]
}
}
}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 normalized product detail for one Rebag (https://shop.rebag.com) product handle. The storefront URL is fixed server-side; `handle` is the product's URL slug.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://shop.rebag.com",
"source_url": "https://shop.rebag.com",
"product": {
"id": "9103492219057",
"handle": "handbags-louis-vuitton-saint-jacques-handbag-epi-leather-gm4453161",
"title": "Saint Jacques Handbag Epi Leather GM",
"price": 175,
"images": [
{
"url": "https://cdn.shopify.com/s/files/1/0384/0161/files/445316-1_20Louis_20Vuitton_20Saint_20Jacques_20Handbag_20Epi_20Leather_20GM_2D_0002.jpg?v=1786126659"
}
]
}
}
}curl "https://api.crawlora.net/api/v1/rebag/products/<handle>" \
-H "x-api-key: $CRAWLORA_API_KEY"