---
title: "Get a recipe"
method: GET
path: "/recipes/{owner}/{name}"
tags: ["Recipes"]
---

# Get a recipe

`GET /recipes/{owner}/{name}`

Retrieve a recipe by name

## Path parameters

- `owner` string, required
- `name` string, required

## Response `200`

Retrieved

- Repository
  - `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
  - `id` string, required — The recipe unique ID
  - `latest_tag` string, required — The latest package version to be indexed
  - `owner` AccountPublic, required
    - `id` string, required
    - `account_type` string, required
    - `name` string, required
    - `display_name` string
    - `description` string
    - `picture_url` string — https://robohash.org/ladybugbot
  - `permissions` RepositoryUserPermissions
    - `admin` boolean — The user has admin permission to this resource
    - `write` boolean — The user has write permission on this resource
    - `read` boolean — The user has read permission on this resource
  - `slug` string — The repository slug

## Other responses

- `400` — Invalid request
- `403` — Access forbidden
- `404` — Not found
- `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)
