Endpoint Playground
Test Crawlora's BigCommerce storefront category 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/bigcommerce/category?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Full public BigCommerce category page URL | |
| page | integer | No | 1-indexed category page, defaults to 1 |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://store.example",
"source_url": "https://store.example/category?page=1",
"page": 1,
"products": [
{
"name": "Widget",
"url": "https://store.example/products/widget",
"price": 12.5
}
]
}
}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 one normalized product-listing page from a public BigCommerce storefront category page. url must be the full public category-page URL. page is 1-indexed and defaults to 1.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://store.example",
"source_url": "https://store.example/category?page=1",
"page": 1,
"products": [
{
"name": "Widget",
"url": "https://store.example/products/widget",
"price": 12.5
}
]
}
}curl "https://api.crawlora.net/api/v1/bigcommerce/category?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"