Endpoint Playground
Test Crawlora's BigCommerce storefront search 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/search?url=<url>&q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Public BigCommerce storefront origin | |
| q | string | Yes | Search text | |
| page | integer | No | 1-indexed search page, defaults to 1 |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://store.example",
"source_url": "https://store.example/search.php?page=1&search_query=widget§ion=product",
"query": "widget",
"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-search page from a public BigCommerce storefront. url must be the public storefront origin; an optional caller path or query is ignored. q is required search text. page is 1-indexed and defaults to 1.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://store.example",
"source_url": "https://store.example/search.php?page=1&search_query=widget§ion=product",
"query": "widget",
"page": 1,
"products": [
{
"name": "Widget",
"url": "https://store.example/products/widget",
"price": 12.5
}
]
}
}curl "https://api.crawlora.net/api/v1/bigcommerce/search?url=<url>&q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"