Endpoint Playground
Test Crawlora's Kroger 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/kroger/category?slug=<slug>&category_id=<category_id>&sort=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | Yes | Category URL slug segment | |
| category_id | string | Yes | Category numeric taxonomy id | |
| page | integer | No | One-based result page | |
| sort | string | No | relevance | Result order. One of: relevance, name_asc, popularity_desc |
| brands | string | No | Comma-separated brand names to filter by, taken verbatim from a previous response's facets | |
| nutrition | string | No | Comma-separated nutrition/dietary facet values | |
| flavor | string | No | Comma-separated flavor facet values | |
| scent | string | No | Comma-separated scent facet values | |
| savings | string | No | Comma-separated savings facet values | |
| more_options | string | No | Comma-separated more-options facet values | |
| price_min | number | No | Lower bound of the price filter; defaults to 0 | |
| price_max | number | No | Upper bound of the price filter; required to filter on price |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "mushrooms",
"category_id": "0611200686",
"page": 1,
"total_count": 28,
"products": [
{
"upc": "0001111091487",
"url": "https://www.kroger.com/p/sliced-white-mushrooms/0001111091487",
"title": "Sliced White Mushrooms",
"image_url": "https://www.kroger.com/product/images/medium/front/0001111091487",
"price": 2.39,
"currency": "USD",
"size": "8 oz",
"snap_ebt_eligible": true,
"low_stock": false
}
]
}
}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.
Browses a Kroger product category and returns normalized product cards plus facet groups, in the same shape as kroger-search. slug and category_id together identify the category (e.g. "pet" and "27" for kroger.com/pl/pet/27). Served from Kroger's own search JSON API using category_id as a taxonomy filter, with real upstream pagination; it falls back to parsing the rendered category page if that path is unavailable, and the source field reports which path answered. Facet filters and sort apply to the JSON path only: when any of them is set, a JSON-path failure returns an error rather than silently falling back to unfiltered results.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "mushrooms",
"category_id": "0611200686",
"page": 1,
"total_count": 28,
"products": [
{
"upc": "0001111091487",
"url": "https://www.kroger.com/p/sliced-white-mushrooms/0001111091487",
"title": "Sliced White Mushrooms",
"image_url": "https://www.kroger.com/product/images/medium/front/0001111091487",
"price": 2.39,
"currency": "USD",
"size": "8 oz",
"snap_ebt_eligible": true,
"low_stock": false
}
]
}
}curl "https://api.crawlora.net/api/v1/kroger/category?slug=<slug>&category_id=<category_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"