Endpoint Playground
Test Crawlora's Rebag Search Suggest 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/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search query | |
| types | string | No | Comma-separated suggestion types. Allowed values: product, collection, query | |
| limit | integer | No | Maximum results per type, defaults to 10 and supports up to 20 |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://shop.rebag.com",
"source_url": "https://shop.rebag.com",
"query": "chanel",
"types": [
"product",
"collection",
"query"
],
"limit": 10,
"products": [
{
"handle": "handbags-chanel-deauville-tote-mixed-fibers-medium4116301",
"title": "Deauville Tote Mixed Fibers Medium",
"price": "3410.00"
}
],
"collections": [
{
"handle": "chanel",
"title": "Chanel"
}
],
"queries": [
{
"text": "chanel",
"url": "https://shop.rebag.com/search?q=chanel"
}
]
}
}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 products, collections, and query suggestions from Rebag's (https://shop.rebag.com) credential-free predictive search Ajax endpoint. 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",
"types": [
"product",
"collection",
"query"
],
"limit": 10,
"products": [
{
"handle": "handbags-chanel-deauville-tote-mixed-fibers-medium4116301",
"title": "Deauville Tote Mixed Fibers Medium",
"price": "3410.00"
}
],
"collections": [
{
"handle": "chanel",
"title": "Chanel"
}
],
"queries": [
{
"text": "chanel",
"url": "https://shop.rebag.com/search?q=chanel"
}
]
}
}curl "https://api.crawlora.net/api/v1/rebag/search/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"