Fetch all products slugs

Fetch all products slugs Deprecated. Use https://graphql.enad.io instead.

GET/api/v1/omni/:app_id/:store_group/:market/:locale/products/slugs
API
Shopper
Updated
Apr 26, 2026

shopper-api:GET:/api/v1/omni/:app_id/:store_group/:market/:locale/products/slugs

Fetch all products slugs 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/products/slugs
  • Summary: Fetch all products slugs
  • Description: Fetch all products slugs 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.

Parameters8 parameters
NameInRequiredTypeDescription
app_idpathYesstringApp ID
store_grouppathYesstringStore group
marketpathYesstringMarket
localepathYesstringAlpha 2 country code. e.g se
only_activequeryNobooleanOnly active products
pagequeryNointegerPage number (default: 1)
per_pagequeryNointegerItems per page (default: 500)
include_child_category_productsqueryNobooleanInclude products from child categories when filtering by category or category_id
Request bodyNo documented body

Not documented in the OpenAPI contract.

Responses2 statuses
StatusDescriptionContent
200List of product slugsapplication/json (object)
500Internal server errorapplication/json (object)

200 - object

Paginated String List

PropertyTypeRequiredDetails
datastring[]No-
pageintegerNo-
totalintegerNo-
total_pagesintegerNo-

Generated example (synthetic):

{
  "data": [
    "string"
  ],
  "page": 0,
  "total": 0,
  "total_pages": 0
}

500 - object

Error Message

PropertyTypeRequiredDetails
messagestringNo-

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/products/slugs
  • Operation ID: Not documented in the OpenAPI contract.
  • OpenAPI tag: Products
  • OpenAPI summary: Fetch all products slugs

Fetch all products slugs

# Fetch all products slugs Fetch all products slugs Deprecated. Use https://graphql.enad.io instead.
GET /api/v1/omni/:app_id/:store_group/:market/:locale/products/slugs
Purpose

Fetch all products slugs Deprecated.

Required inputs

app_id path store_group path market path locale path

Primary response

200 ยท List of product slugs

Operation key

shopper-api:GET:/api/v1/omni/:app_id/:store_group/:market/:locale/products/slugs

## 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](/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/products/slugs` - Summary: Fetch all products slugs - Description: Fetch all products slugs Deprecated. Use https://graphql.enad.io instead. - OpenAPI contract: shopper-api - Operation ID: Not documented in the OpenAPI contract. - Stable operation key: `shopper-api:GET:/api/v1/omni/:app_id/:store_group/:market/:locale/products/slugs` 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 | App ID | | store_group | path | Yes | string | Store group | | market | path | Yes | string | Market | | locale | path | Yes | string | Alpha 2 country code. e.g `se` | | only_active | query | No | boolean | Only active products | | page | query | No | integer | Page number (default: 1) | | per_page | query | No | integer | Items per page (default: 500) | | include_child_category_products | query | No | boolean | Include products from child categories when filtering by category or category_id | ## Request body Not documented in the OpenAPI contract. ## Responses | Status | Description | Content | | --- | --- | --- | | 200 | List of product slugs | application/json (object) | | 500 | Internal server error | application/json (object) | ### 200 - object #### Paginated String List | Property | Type | Required | Details | | --- | --- | --- | --- | | `data` | string[] | No | - | | `page` | integer | No | - | | `total` | integer | No | - | | `total_pages` | integer | No | - | **Generated example (synthetic):** ```json { "data": [ "string" ], "page": 0, "total": 0, "total_pages": 0 } ``` ### 500 - object #### Error Message | Property | Type | Required | Details | | --- | --- | --- | --- | | `message` | string | No | - | **Generated example (synthetic):** ```json { "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/products/slugs` - Operation ID: Not documented in the OpenAPI contract. - Stable operation key: `shopper-api:GET:/api/v1/omni/:app_id/:store_group/:market/:locale/products/slugs` - OpenAPI tag: Products - OpenAPI summary: Fetch all products slugs