Endpoint Playground
Test Crawlora's Rebag Product Recommendations 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>/recommendations?intent=related" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| handle (path) | string | Yes | Product handle | |
| limit | integer | No | Maximum products, defaults to 10 and supports up to 20 | |
| intent | string | No | related | Recommendation intent. Allowed values: related, complementary |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://shop.rebag.com",
"source_url": "https://shop.rebag.com",
"handle": "handbags-louis-vuitton-saint-jacques-handbag-epi-leather-gm4453161",
"product_id": "9103492219057",
"intent": "related",
"limit": 10,
"products": [
{
"handle": "handbags-chanel-wavy-cc-hobo-quilted-crumpled-calfskin-medium4089861",
"title": "Wavy CC Hobo Quilted Crumpled Calfskin Medium"
}
]
}
}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 recommended products for one Rebag (https://shop.rebag.com) product handle. The route handle is resolved to a Shopify product id before fetching recommendations. The storefront URL is fixed server-side.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://shop.rebag.com",
"source_url": "https://shop.rebag.com",
"handle": "handbags-louis-vuitton-saint-jacques-handbag-epi-leather-gm4453161",
"product_id": "9103492219057",
"intent": "related",
"limit": 10,
"products": [
{
"handle": "handbags-chanel-wavy-cc-hobo-quilted-crumpled-calfskin-medium4089861",
"title": "Wavy CC Hobo Quilted Crumpled Calfskin Medium"
}
]
}
}curl "https://api.crawlora.net/api/v1/rebag/products/<handle>/recommendations" \
-H "x-api-key: $CRAWLORA_API_KEY"