Endpoint Playground
Test Crawlora's Search Balenciaga products 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/balenciaga/search?q=<q>&sort=latest" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Free-text search query | |
| sort | string | No | latest | Sort order |
| page | integer | No | One-based page number, defaults to 1 | |
| filters | string | No | Comma-separated exact facet filters; repeat a field for OR values, for example akeneo_macroColor:BLACK,akeneo_macroColor:WHITE |
{
"code": 200,
"msg": "OK",
"data": {
"query": "hourglass",
"sort": "latest",
"country": "ZW",
"language": "en",
"page": 1,
"limit": 12,
"count": 1,
"total_results": 35,
"products": [
{
"product_id": "A007IH2ACT21000",
"name": "HOURGLASS AVENUE TOP HANDLE BAG SMALL",
"url": "https://www.balenciaga.com/en-en/hourglass-avenue-top-handle-bag-small-black-A007IH2ACT21000.html"
}
]
}
}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.
Searches Balenciaga's storefront by keyword using the site's own product-grid fragment. q is required; sort accepts latest, price_ascending, or price_descending; page is one-based with 12 products per page; and filters accepts comma-separated exact field:value pairs from live facets. Repeat a field to OR multiple values within that facet. A genuine no-result query returns an empty products list.
{
"code": 200,
"msg": "OK",
"data": {
"query": "hourglass",
"sort": "latest",
"country": "ZW",
"language": "en",
"page": 1,
"limit": 12,
"count": 1,
"total_results": 35,
"products": [
{
"product_id": "A007IH2ACT21000",
"name": "HOURGLASS AVENUE TOP HANDLE BAG SMALL",
"url": "https://www.balenciaga.com/en-en/hourglass-avenue-top-handle-bag-small-black-A007IH2ACT21000.html"
}
]
}
}curl "https://api.crawlora.net/api/v1/balenciaga/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"