Endpoint Playground
Test Crawlora's Shopify Page 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/shopify/pages/accessibility?url=https%3A%2F%2Fwww.allbirds.com" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| handle (path) | string | Yes | accessibility | Page handle |
| url | string | Yes | https://www.allbirds.com | Shopify storefront URL |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.allbirds.com",
"source_url": "https://www.allbirds.com",
"page": {
"id": "54831906896",
"handle": "accessibility",
"title": "Accessibility",
"url": "https://www.allbirds.com/pages/accessibility",
"content": "Our Commitment to Accessibility"
}
}
}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 page detail from Shopify's credential-free `/pages/{handle}.json` endpoint. Page body HTML is returned as cleaned text only.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.allbirds.com",
"source_url": "https://www.allbirds.com",
"page": {
"id": "54831906896",
"handle": "accessibility",
"title": "Accessibility",
"url": "https://www.allbirds.com/pages/accessibility",
"content": "Our Commitment to Accessibility"
}
}
}curl "https://api.crawlora.net/api/v1/shopify/pages/<handle>?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"