Search products

Search products with lightweight response containing only name, descriptions, tags, images and attributes Deprecated. Use https://graphql.enad.io instead.

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

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

Search products with lightweight response containing only name, descriptions, tags, images and attributes 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/search
  • Summary: Search products
  • Description: Search products with lightweight response containing only name, descriptions, tags, images and attributes 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.

Parameters10 parameters
NameInRequiredTypeDescription
app_idpathYesstringApp ID
localepathYesstringAlpha 2 country code. e.g se
marketpathYesstringThe related product market
pagequeryNointegerPage number (default: 1)
per_pagequeryNointegerItems per page (default: 50, max: 50)
qqueryYesstringSearch query
only_activequeryNobooleanFilter by active status only (default: false)
in_stockqueryNobooleanFilter by stock availability
in_stock_inqueryNostringFilter by stock availability in a specific warehouse (by warehouse slug)
sortqueryNostringSort order. One of name_asc, name_desc, rank (default: rank)
Request bodyNo documented body

Not documented in the OpenAPI contract.

Responses3 statuses
StatusDescriptionContent
200OKapplication/json (object)
400Invalid parametersapplication/json (object)
500Internal server errorapplication/json (object)

200 - object

Paginated Product Search Results

PropertyTypeRequiredDetails
dataobject[]No-
pageintegerNo-
totalintegerNo-
total_pagesintegerNo-
Product Search Result
PropertyTypeRequiredDetails
attributesobjectNo-
brandobjectNo-
idstringNo-
imagesobject[]No-
pricesobject[]No-
product_namestringNo-
product_numberstringNo-
ranknumberNo-
tagsobject[]No-
videosobject[]No-
Product Brand
PropertyTypeRequiredDetails
addressobjectNo-
namestringNo-
seriesobjectNo-
slugstringNo-
Image
PropertyTypeRequiredDetails
altstringNo-
attributesobjectNo-
blurhashstringNo-
custom_fieldsobjectNo-
sortintegerNo-
titlestringNo-
urlstringNo-
Variant Prices
PropertyTypeRequiredDetails
channel_typeenum("B2B", "B2C")No-
country_of_salestringNo-
marketsobject[]No-
store_group_descriptionstringNo-
store_group_idstringNo-
store_group_namestringNo-
store_group_slugstringNo-
Product Tag
PropertyTypeRequiredDetails
attributesobjectNo-
created_atstringNo-
filterablebooleanNo-
idstringNo-
keystringNo-
namestringNo-
orderintegerNo-
statusstringNo-
updated_atstringNo-
Video
PropertyTypeRequiredDetails
attributesobjectNo-
descriptionstringNo-
titlestringNo-
urlstringNo-
{
  "data": [
    {
      "attributes": {},
      "brand": {
        "address": {
          "city": null,
          "co_address": null,
          "country": null,
          "email": null,
          "house_number": null,
          "postal_code": null,
          "state_province": null,
          "street_address": null
        },
        "name": "string",
        "series": {
          "name": null,
          "slug": null
        },
        "slug": "string"
      },
      "id": "string",
      "images": [
        {
          "alt": null,
          "attributes": null,
          "blurhash": null,
          "custom_fields": null,
          "sort": null,
          "title": null,
          "url": null
        }
      ],
      "prices": [
        {
          "channel_type": null,
          "country_of_sale": null,
          "markets": null,
          "store_group_description": null,
          "store_group_id": null,
          "store_group_name": null,
          "store_group_slug": null
        }
      ],
      "product_name": "string",
      "product_number": "string",
      "rank": 0,
      "tags": [
        {
          "attributes": null,
          "created_at": null,
          "filterable": null,
          "id": null,
          "key": null,
          "name": null,
          "order": null,
          "status": null,
          "updated_at": null
        }
      ],
      "videos": [
        {
          "attributes": null,
          "description": null,
          "title": null,
          "url": null
        }
      ]
    }
  ],
  "page": 0,
  "total": 0,
  "total_pages": 0
}

400 - object

Error Message

PropertyTypeRequiredDetails
messagestringNo-

Generated example (synthetic):

{
  "message": "string"
}

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

Search products

# Search products Search products with lightweight response containing only name, descriptions, tags, images and attributes Deprecated. Use https://graphql.enad.io instead.
GET /api/v1/omni/:app_id/:store_group/:market/:locale/products/search
Purpose

Search products with lightweight response containing only name, descriptions, tags, images and attributes Deprecated.

Required inputs

app_id path locale path market path q query

Primary response

200 ยท OK

Operation key

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

## 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/search` - Summary: Search products - Description: Search products with lightweight response containing only name, descriptions, tags, images and attributes 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/search` 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 | | locale | path | Yes | string | Alpha 2 country code. e.g `se` | | market | path | Yes | string | The related product market | | page | query | No | integer | Page number (default: 1) | | per_page | query | No | integer | Items per page (default: 50, max: 50) | | q | query | Yes | string | Search query | | only_active | query | No | boolean | Filter by active status only (default: false) | | in_stock | query | No | boolean | Filter by stock availability | | in_stock_in | query | No | string | Filter by stock availability in a specific warehouse (by warehouse slug) | | sort | query | No | string | Sort order. One of name_asc, name_desc, rank (default: rank) | ## 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 Product Search Results | Property | Type | Required | Details | | --- | --- | --- | --- | | `data` | object[] | No | - | | `page` | integer | No | - | | `total` | integer | No | - | | `total_pages` | integer | No | - | ##### Product Search Result | Property | Type | Required | Details | | --- | --- | --- | --- | | `attributes` | object | No | - | | `brand` | object | No | - | | `id` | string | No | - | | `images` | object[] | No | - | | `prices` | object[] | No | - | | `product_name` | string | No | - | | `product_number` | string | No | - | | `rank` | number | No | - | | `tags` | object[] | No | - | | `videos` | object[] | No | - | ##### Product Brand | Property | Type | Required | Details | | --- | --- | --- | --- | | `address` | object | No | - | | `name` | string | No | - | | `series` | object | No | - | | `slug` | string | No | - | ##### Image | Property | Type | Required | Details | | --- | --- | --- | --- | | `alt` | string | No | - | | `attributes` | object | No | - | | `blurhash` | string | No | - | | `custom_fields` | object | No | - | | `sort` | integer | No | - | | `title` | string | No | - | | `url` | string | No | - | ##### Variant Prices | Property | Type | Required | Details | | --- | --- | --- | --- | | `channel_type` | enum("B2B", "B2C") | No | - | | `country_of_sale` | string | No | - | | `markets` | object[] | No | - | | `store_group_description` | string | No | - | | `store_group_id` | string | No | - | | `store_group_name` | string | No | - | | `store_group_slug` | string | No | - | ##### Product Tag | Property | Type | Required | Details | | --- | --- | --- | --- | | `attributes` | object | No | - | | `created_at` | string | No | - | | `filterable` | boolean | No | - | | `id` | string | No | - | | `key` | string | No | - | | `name` | string | No | - | | `order` | integer | No | - | | `status` | string | No | - | | `updated_at` | string | No | - | ##### Video | Property | Type | Required | Details | | --- | --- | --- | --- | | `attributes` | object | No | - | | `description` | string | No | - | | `title` | string | No | - | | `url` | string | No | - |
Generated example (synthetic) ```json { "data": [ { "attributes": {}, "brand": { "address": { "city": null, "co_address": null, "country": null, "email": null, "house_number": null, "postal_code": null, "state_province": null, "street_address": null }, "name": "string", "series": { "name": null, "slug": null }, "slug": "string" }, "id": "string", "images": [ { "alt": null, "attributes": null, "blurhash": null, "custom_fields": null, "sort": null, "title": null, "url": null } ], "prices": [ { "channel_type": null, "country_of_sale": null, "markets": null, "store_group_description": null, "store_group_id": null, "store_group_name": null, "store_group_slug": null } ], "product_name": "string", "product_number": "string", "rank": 0, "tags": [ { "attributes": null, "created_at": null, "filterable": null, "id": null, "key": null, "name": null, "order": null, "status": null, "updated_at": null } ], "videos": [ { "attributes": null, "description": null, "title": null, "url": null } ] } ], "page": 0, "total": 0, "total_pages": 0 } ```
### 400 - object #### Error Message | Property | Type | Required | Details | | --- | --- | --- | --- | | `message` | string | No | - | **Generated example (synthetic):** ```json { "message": "string" } ``` ### 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/search` - Operation ID: Not documented in the OpenAPI contract. - Stable operation key: `shopper-api:GET:/api/v1/omni/:app_id/:store_group/:market/:locale/products/search` - OpenAPI tag: Products - OpenAPI summary: Search products