---
title: "Create a Recipe"
method: POST
path: "/recipes/{owner}"
tags: ["Recipes"]
---

# Create a Recipe

`POST /recipes/{owner}`

Create a new recipe.

## Path parameters

- `owner` string, required

## Request body

- RepositoryCreate
  - `public` boolean — Whether or not a repository is publicly viewable
  - `keywords` string[] — A list of keywords to index the repository by
  - `description` string — A description of the repository
  - `icon` string — An icon to represent this repository
  - `name` string, required — The name of the repository

## Response `201`

Success

- CreatedContent — Content for created response.
  - `id` string, uuid, required — Id for the newly created resource.
  - `message` string — A human readable message

## Other responses

- `202` — Accepted
- `400` — Invalid request
- `403` — Access forbidden
- `422` — Validation Error
- `500` — Server error

---

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