Endpoint Playground
Test Crawlora's Rebag Pages 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/pages" \
-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 static pages, 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": 50,
"pages": [
{
"id": "150373237040",
"handle": "welcome-trendlee",
"title": "Welcome to Rebag",
"url": "https://shop.rebag.com/pages/welcome-trendlee",
"content": "Thanks for signing up to our newsletter. You will be the first to be notified of new arrivals, events and receive exclusive access to some of our most sought-after items."
}
]
}
}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 static pages from Rebag (https://shop.rebag.com). The storefront URL is fixed server-side.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://shop.rebag.com",
"source_url": "https://shop.rebag.com",
"page": 1,
"limit": 50,
"pages": [
{
"id": "150373237040",
"handle": "welcome-trendlee",
"title": "Welcome to Rebag",
"url": "https://shop.rebag.com/pages/welcome-trendlee",
"content": "Thanks for signing up to our newsletter. You will be the first to be notified of new arrivals, events and receive exclusive access to some of our most sought-after items."
}
]
}
}curl "https://api.crawlora.net/api/v1/rebag/pages" \
-H "x-api-key: $CRAWLORA_API_KEY"