Endpoint Playground
Test Crawlora's Browse a Balenciaga 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/balenciaga/category?path=<path>&sort=latest" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | Yes | Category path from balenciaga-categories | |
| sort | string | No | latest | Sort order |
| page | integer | No | One-based page number, defaults to 1 | |
| limit | integer | No | Products per page, defaults to 16, maximum 48 | |
| 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": {
"path": "/en-en/women/bags-for-women/handbags",
"country": "ZW",
"language": "en",
"sort": "latest",
"page": 1,
"limit": 16,
"count": 1,
"total_results": 148,
"total_pages": 10,
"products": [
{
"product_id": "A007IH2ACT21000",
"name": "HOURGLASS AVENUE TOP HANDLE BAG SMALL",
"currency": "USD",
"in_stock": true,
"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.
Returns one Balenciaga category listing from the site's own Search-ShowAjax fragment. path comes from balenciaga-categories. sort accepts latest, price_ascending, or price_descending. filters is a comma-separated list of exact field:value pairs from the response's live facets; repeat a field to OR multiple values within that facet; omit it for an unfiltered listing.
{
"code": 200,
"msg": "OK",
"data": {
"path": "/en-en/women/bags-for-women/handbags",
"country": "ZW",
"language": "en",
"sort": "latest",
"page": 1,
"limit": 16,
"count": 1,
"total_results": 148,
"total_pages": 10,
"products": [
{
"product_id": "A007IH2ACT21000",
"name": "HOURGLASS AVENUE TOP HANDLE BAG SMALL",
"currency": "USD",
"in_stock": true,
"url": "https://www.balenciaga.com/en-en/hourglass-avenue-top-handle-bag-small-black-A007IH2ACT21000.html"
}
]
}
}curl "https://api.crawlora.net/api/v1/balenciaga/category?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"