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

# List catalogues

`GET /catalogues`

Retrieve a paginated list of catalogues for the authenticated organization.

## Query parameters

- `limit` integer — Maximum number of catalogues to return
- `offset` integer — Number of catalogues to skip for pagination
- `sort` string, nullable — Sort field. Prefix with '-' for descending order. Available: name, created_at. Example: 'name' (A→Z), '-created_at' (newest first).
- `search` string, nullable — Filter catalogues by name (case-insensitive substring match).

## Response `200`

Successfully retrieved catalogues

- object
  - `ok` boolean
  - `data` object[]
    - `id` string, uuid
    - `organization_id` string, uuid
    - `name` string
    - `description` string
    - `file_key` string, nullable
    - `status` string
    - `total_items` integer
    - `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/revisions/49680ee64400/schema)
