Kroger API endpoint
Use Crawlora's Kroger categories API to extract supported public Kroger data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/kroger/categoriesReturns Kroger's full product-browse category taxonomy: every slug/category_id pair kroger-search and kroger-category accept, each with its department and full breadcrumb. This is how to discover valid slug/category_id values -- previously the only way was to already have one from a search response's facet group. Sourced from Kroger's own site navigation menu; covers every category a shopper can browse to from Kroger's site menu (321 at time of writing across 7 departments). Takes no parameters. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/kroger/categories" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Some targets require real browser execution because the data is loaded through JavaScript, dynamic rendering, or interaction-like browser behavior.
For supported endpoints, Crawlora can route requests through a managed browser cluster. This allows Crawlora to execute JavaScript, load dynamic content, apply browser-level request behavior, and normalize the rendered result into JSON.
You do not need to operate your own Playwright, Puppeteer, Chrome, proxy, queue, or retry infrastructure.
- `categories[]` is a flat list — every leaf category a shopper can browse to from Kroger's own site menu. 321 entries across 7 departments (Fresh, Grocery, Beer/Wine/Liquor, Health/Beauty/Baby, Cleaning/Household, Home/Electronics/Toys, Pet) at time of writing. - Each entry's `category_id` and `slug` are directly usable as `kroger-category`'s own `category_id` and `slug` query parameters. - `department` is a convenience field equal to `breadcrumb[0]`. - `breadcrumb` is the full department > aisle > category path. Kroger's own menu sometimes repeats a level's name at the next level down (e.g. "Fresh Fruit & Vegetables" as both an aisle group and its own sole subgroup); that repetition is collapsed so the breadcrumb reads cleanly without losing a real hierarchy level. - `departments` lists the top-level departments that contributed at least one category, in Kroger's own menu order. Kroger's site menu carries 12 top-level entries in total; the other 5 ("Popular", "Seasonal Favorites", "Our Brands", "Gift Cards", "Explore More") are marketing shortcuts with no category-browse links and are correctly excluded rather than padding the list with unusable entries. - The same `category_id` can legitimately appear more than once, cross-listed under different departments with a different display `slug` (e.g. Kroger's own menu lists id `05017` as both "Bacon & Breakfast Sausage" under Fresh > Meat and under Grocery > Breakfast). Both entries are kept — neither is a duplicate to collapse away. - **Known gap, not silently covered up**: Kroger's search API accepts `category_id` values coarser than any entry returned here — the originally-shipped `kroger-category` example (`slug=pet`, `category_id=27`, sourced from a product page's breadcrumb) is a top-level department id, one level up from every leaf id this endpoint enumerates (Kroger's own menu links to a `/d/pet-supplies` landing page for "Shop All Pet" instead of a `/pl/` category id). That coarser department-id space is not independently enumerated by any credential-free source found so far; see `notes/kroger-maintenance.md`'s 2026-09-15 entry for the full investigation. Every `slug`/`category_id` pair this endpoint does return is confirmed to work with `kroger-category`. Example response: ```json { "code": 200, "msg": "OK", "data": { "count": 321, "departments": ["Fresh", "Grocery", "Beer, Wine & Liquor", "Health, Beauty & Baby", "Cleaning & Household", "Home, Electronics & Toys", "Pet"], "categories": [ { "category_id": "06111", "slug": "fresh-fruit", "name": "Fresh Fruit", "department": "Fresh", "breadcrumb": ["Fresh", "Fresh Fruit & Vegetables", "Fresh Fruit"], "url": "https://www.kroger.com/pl/fresh-fruit/06111" } ], "source_url": "https://www.kroger.com/atlas/v1/dynamic-experience/v1/amp-experiences/navigation/1.0.0/site-menu-v2" } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"count": 321,
"departments": [
"Fresh",
"Grocery",
"Beer, Wine & Liquor",
"Health, Beauty & Baby",
"Cleaning & Household",
"Home, Electronics & Toys",
"Pet"
],
"categories": [
{
"category_id": "06111",
"slug": "fresh-fruit",
"name": "Fresh Fruit",
"department": "Fresh",
"breadcrumb": [
"Fresh",
"Fresh Fruit & Vegetables",
"Fresh Fruit"
],
"url": "https://www.kroger.com/pl/fresh-fruit/06111"
}
],
"source_url": "https://www.kroger.com/atlas/v1/dynamic-experience/v1/amp-experiences/navigation/1.0.0/site-menu-v2"
}
}Request schema
No body schema
Response schema
#/definitions/kroger.categoriesResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | kroger.CategoriesResponse | No | ||||
| data.categories | array | No | ||||
| data.categories[].breadcrumb | array | No | Breadcrumb is the full department > aisle > category path, deduplicated where Kroger's own menu repeats a level's name at the next level down. | |||
| data.categories[].category_id | string | No | ||||
| data.categories[].department | string | No | Department is the top-level department this category rolls up under (Breadcrumb[0]), included as a convenience field for grouping/filtering without parsing Breadcrumb. | |||
| data.categories[].name | string | No | ||||
| data.categories[].slug | string | No | ||||
| data.categories[].url | string | No | URL is the canonical kroger.com category-browse page URL. | |||
| data.count | integer | No | ||||
| data.departments | array | No | Departments lists the top-level departments that contributed at least one category below, in Kroger's own menu order. | |||
| data.source_url | string | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/kroger/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms