Endpoint Playground
Test Crawlora's Rebag Products 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" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| page | integer | No | 1-based page, defaults to 1 | |
| limit | integer | No | Maximum products, defaults to 50 and supports up to 250 |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://shop.rebag.com",
"source_url": "https://shop.rebag.com",
"page": 1,
"limit": 2,
"products": [
{
"id": "9103492219057",
"handle": "handbags-louis-vuitton-saint-jacques-handbag-epi-leather-gm4453161",
"title": "Saint Jacques Handbag Epi Leather GM",
"url": "https://shop.rebag.com/products/handbags-louis-vuitton-saint-jacques-handbag-epi-leather-gm4453161",
"price": 175,
"available": true
}
]
}
}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 products from Rebag's (https://shop.rebag.com) public product catalog. The storefront URL is fixed server-side. Valid empty result pages return `200` with an empty products array.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://shop.rebag.com",
"source_url": "https://shop.rebag.com",
"page": 1,
"limit": 2,
"products": [
{
"id": "9103492219057",
"handle": "handbags-louis-vuitton-saint-jacques-handbag-epi-leather-gm4453161",
"title": "Saint Jacques Handbag Epi Leather GM",
"url": "https://shop.rebag.com/products/handbags-louis-vuitton-saint-jacques-handbag-epi-leather-gm4453161",
"price": 175,
"available": true
}
]
}
}curl "https://api.crawlora.net/api/v1/rebag/products" \
-H "x-api-key: $CRAWLORA_API_KEY"