Retrieve categories
Returns a list of categories without subcategories, with support for pagination and filtering by active status. Deprecated. Use https://graphql.enad.io instead.
/api/v1/omni/:app_id/:store_group/:market/:locale/categories- API
- Shopper
- OpenAPI
- shopper-api
- Updated
- Apr 26, 2026
shopper-api:GET:/api/v1/omni/:app_id/:store_group/:market/:locale/categories
Returns a list of categories without subcategories, with support for pagination and filtering by active status. Deprecated. Use https://graphql.enad.io instead.
API ownership
- API family: Shopper API
- Best for: Public storefront catalog reads and shopper-facing product discovery.
- Prefer Search API for: New product discovery, facets, autocomplete, and other search-heavy storefront flows.
- Do not use from: Trusted admin integrations that create, update, or delete merchant-owned data.
- Guide route: /apis/shopper/latest
The OpenAPI contract defines the method, path, parameters, request body, and responses for this operation.
Operation
- Method:
GET - Path:
/api/v1/omni/:app_id/:store_group/:market/:locale/categories - Summary: Retrieve categories
- Description: Returns a list of categories without subcategories, with support for pagination and filtering by active status. Deprecated. Use https://graphql.enad.io instead.
- OpenAPI contract: shopper-api
- Operation ID: Not documented in the OpenAPI contract.
Operation key uses API family, method, and path because this OpenAPI contract does not publish an operation ID.
Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
| app_id | path | Yes | string | Application ID |
| locale | path | Yes | string | Locale for translations (e.g., 'sv', 'en') |
| page | query | No | integer | Page number (default: 1) |
| per_page | query | No | integer | Number of items per page (default: 20, max: 100) |
| only_active | query | No | boolean | Filter to include only active categories (true/false) |
| id | query | No | string[] | Filter by category ID(s); repeat the parameter for each ID (e.g. id=uuid1&id=uuid2) |
| store_group | path | Yes | string | Store group |
Request body
Not documented in the OpenAPI contract.
Responses
| Status | Description | Content |
|---|---|---|
| 200 | OK | application/json (object) |
| 400 | Invalid parameters | application/json (object) |
| 500 | Internal server error | application/json (object) |
200 - object
Paginated Category List
| Property | Type | Required | Details |
|---|---|---|---|
data | object[] | No | - |
page | integer | No | - |
total | integer | No | - |
total_pages | integer | No | - |
Category
| Property | Type | Required | Details |
|---|---|---|---|
attributes | object | No | - |
cover_url | string | No | - |
full_path_name | string[] | No | - |
full_uri_translations | object | No | - |
id | string | No | - |
name | string | No | - |
parent_id | string | No | - |
redirects | object | No | - |
slug_translations | object | No | - |
sort_order | integer | No | - |
status | string | No | - |
sub_categories | object[] | No | - |
uri | string | No | - |
Generated example (synthetic):
{
"data": [
{
"attributes": {},
"cover_url": "string",
"full_path_name": [
"string"
],
"full_uri_translations": {},
"id": "string",
"name": "string",
"parent_id": "string",
"redirects": {},
"slug_translations": {},
"sort_order": 0,
"status": "string",
"sub_categories": [
{
"attributes": null,
"cover_url": null,
"full_path_name": null,
"full_uri_translations": null,
"id": null,
"name": null,
"parent_id": null,
"redirects": null,
"slug_translations": null,
"sort_order": null,
"status": null,
"sub_categories": null,
"uri": null
}
],
"uri": "string"
}
],
"page": 0,
"total": 0,
"total_pages": 0
}400 - object
Error Message
| Property | Type | Required | Details |
|---|---|---|---|
message | string | No | - |
Generated example (synthetic):
{
"message": "string"
}500 - object
Error Message
| Property | Type | Required | Details |
|---|---|---|---|
message | string | No | - |
Generated example (synthetic):
{
"message": "string"
}Contract identity
Use these fields to confirm you are implementing the intended endpoint contract.
- API family: Shopper API
- Method:
GET - Path:
/api/v1/omni/:app_id/:store_group/:market/:locale/categories - Operation ID: Not documented in the OpenAPI contract.
- OpenAPI tag: Categories
- OpenAPI summary: Retrieve categories