Endpoint Playground
Test Crawlora's Rebag Search 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/search?q=<q>&sort=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search query text | |
| sort | string | No | relevance | Sort order. Allowed values: relevance, price_asc, price_desc |
| page | integer | No | 1-based page, defaults to 1 | |
| limit | integer | No | Maximum products, defaults to 20 and supports up to 50 |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://shop.rebag.com",
"source_url": "https://shop.rebag.com",
"query": "chanel",
"sort": "price_desc",
"page": 1,
"limit": 1,
"total_items": 1,
"products": [
{
"id": "9072074391729",
"handle": "handbags-chanel-classic-double-flap-bag-quilted-caviar-medium4425861",
"title": "Classic Double Flap Bag Quilted Caviar Medium",
"url": "https://shop.rebag.com/products/handbags-chanel-classic-double-flap-bag-quilted-caviar-medium4425861",
"vendor": "Chanel",
"price": 9040,
"condition": "Excellent",
"colour": "black",
"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, ranked products from Rebag's (https://shop.rebag.com) own full-text product search (Shopify's Storefront API), including a best-effort condition grade and colour derived from the product's own catalog tags -- attributes not available from the classic catalog JSON endpoints in this family. The storefront URL is fixed server-side.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://shop.rebag.com",
"source_url": "https://shop.rebag.com",
"query": "chanel",
"sort": "price_desc",
"page": 1,
"limit": 1,
"total_items": 1,
"products": [
{
"id": "9072074391729",
"handle": "handbags-chanel-classic-double-flap-bag-quilted-caviar-medium4425861",
"title": "Classic Double Flap Bag Quilted Caviar Medium",
"url": "https://shop.rebag.com/products/handbags-chanel-classic-double-flap-bag-quilted-caviar-medium4425861",
"vendor": "Chanel",
"price": 9040,
"condition": "Excellent",
"colour": "black",
"available": true
}
]
}
}curl "https://api.crawlora.net/api/v1/rebag/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"