---
title: "List items"
method: GET
path: "/catalogues/items"
tags: ["Catalogues"]
---

# List items

`GET /catalogues/items`

Retrieve a paginated list of items with optional filtering by catalogue or standalone status.

## Query parameters

- `catalogue_id` string, uuid, nullable — Filter by catalogue ID
- `standalone_only` boolean — Get only standalone items
- `limit` integer — Maximum number of items to return
- `offset` integer — Number of items to skip for pagination
- `sort` string, nullable — Sort field. Prefix with '-' for descending order. Available: name, created_at, price. Example: 'name' (A→Z), '-price' (highest first).
- `search` string, nullable — Search items by name, SKU, or description (case-insensitive substring match). Applies to all items unless catalogue_id or standalone_only is also set.

## Response `200`

Successfully retrieved items

- object
  - `ok` boolean
  - `data` object[]
    - `id` string, uuid
    - `catalogue_id` string, uuid, nullable
    - `sku` string, nullable
    - `name` string
    - `description` string, nullable
    - `price` string, nullable
    - `currency` string, nullable
    - `quantity` integer, nullable
    - `category` string, nullable
    - `created_at` string, date-time
    - `updated_at` string, date-time
  - `meta` object
    - `limit` integer
    - `offset` integer
    - `total_items` integer

## Other responses

- `401` — Invalid or missing API key
- `403` — Insufficient permissions

---

[API](https://skmtc.net/yourang/apis/yourang-ai-external-api-v1.md) · [All operations](https://skmtc.net/yourang/apis/yourang-ai-external-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/yourang/yourang-ai-external-api-v1/versions/49680ee64400/schema)
