---
title: "Create catalogue"
method: POST
path: "/catalogues"
tags: ["Catalogues"]
---

# Create catalogue

`POST /catalogues`

Create a new catalogue in your organization.

## Request body

- object — Unified schema for creating a catalogue (manually or from preview).
  - `name` string, required — Catalogue name
  - `description` string — Catalogue description (optional)
  - `items` object[] — Initial items to add to the catalogue (optional)
    - `sku` string — Product SKU (optional - auto-generated if not provided)
    - `name` string, required — Product name
    - `description` string — Product description (optional)
    - `price` string — Product price (optional)
    - `currency` string — Currency code (optional)
    - `quantity` integer — Available quantity (optional)
    - `category` string — Product category (optional)

## Response `201`

Catalogue created successfully

- object
  - `ok` boolean
  - `data` object
    - `id` string, uuid
    - `user_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

## Other responses

- `400` — Invalid request data
- `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)
