---
title: "List item brands"
method: GET
path: "/v1/item_brands/"
tags: ["Item Brands"]
---

# List item brands

`GET /v1/item_brands/`

List item brands

**Required scope: `business/catalogue:read`**

**Deprecated alias:** `business/products:read` (still accepted, will be removed in a future release)

## Query parameters

- `created_at__gte` string, date-time, nullable — The min created date and time in ISO 8601 format. If only one bound is provided, the other is automatically set 31 days away (e.g. supplying only `__gte=2024-11-01T00:00:00Z` sets `__lte=2024-12-02T00:00:00Z`). When both bounds are provided, the range may not exceed 31 days.
- `created_at__lte` string, date-time, nullable — The max created date and time in ISO 8601 format. If only one bound is provided, the other is automatically set 31 days away (e.g. supplying only `__gte=2024-11-01T00:00:00Z` sets `__lte=2024-12-02T00:00:00Z`). When both bounds are provided, the range may not exceed 31 days.
- `updated_at__gte` string, date-time, nullable — The min updated date and time in ISO 8601 format. If only one bound is provided, the other is automatically set 31 days away (e.g. supplying only `__gte=2024-11-01T00:00:00Z` sets `__lte=2024-12-02T00:00:00Z`). When both bounds are provided, the range may not exceed 31 days.
- `updated_at__lte` string, date-time, nullable — The max updated date and time in ISO 8601 format. If only one bound is provided, the other is automatically set 31 days away (e.g. supplying only `__gte=2024-11-01T00:00:00Z` sets `__lte=2024-12-02T00:00:00Z`). When both bounds are provided, the range may not exceed 31 days.
- `cursor` string, nullable — A pagination cursor from where results should start being fetched.
- `limit` integer — The maximum number of results to return.

## Response `200`

Successful Response

- PaginatedResponseItemBrand
  - `data` ItemBrand[], required — A list of paginated entities.
    - `id` string, required — The unique identifier of the brand.
    - `name` string, required — The name of the brand.
    - `description` string, nullable, required — A description of the brand.
    - `image` Media, required
      - `id` string, required — The unique identifier of the media.
      - `type` 'image', required
      - `mime_type` string, required — The mime type indicates the format of the media.
      - `url` string, required — The URL of the media file.
      - `created_at` string, date-time, required — The media creation date and time in ISO 8601 format.
      - `updated_at` string, date-time, nullable, required — The date and time the media was last modified in ISO 8601 format.
    - `created_at` string, date-time, required — The brand creation date and time in ISO 8601 format.
    - `updated_at` string, date-time, nullable, required — The date and time the brand was last modified in ISO 8601 format.
  - `next_cursor` string, nullable, required — A pagination cursor that can be used to retrieve the next set of results.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `429` — Too Many Requests

---

[API](https://skmtc.net/yoco/apis/yoco-api.md) · [All operations](https://skmtc.net/yoco/apis/yoco-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/yoco/yoco-api/revisions/1ee03e82bc45/schema)
