Endpoint Playground
Test Crawlora's BigCommerce storefront product 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/product?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Full public BigCommerce product page URL |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://store.example",
"source_url": "https://store.example/products/widget",
"product": {
"name": "Widget",
"url": "https://store.example/products/widget",
"price": 12.5,
"currency": "USD"
}
}
}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 product detail from a public BigCommerce storefront product page. url must be the full public product-page URL for a BigCommerce Stencil storefront.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://store.example",
"source_url": "https://store.example/products/widget",
"product": {
"name": "Widget",
"url": "https://store.example/products/widget",
"price": 12.5,
"currency": "USD"
}
}
}curl "https://api.crawlora.net/api/v1/bigcommerce/product?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"