In this section
← Recipe
- Retrieve the required recipe
- Boost a recipe
- Unboost a recipe
- Recursively retrieve the specified recipe's linked recipes
- Retrieve the recipe's preparations available to the current user
- Retrieve the user's recipes
- Create a new recipe
- Retrieve the specified recipe by its id
- Update an existing recipe
- Delete a recipe
On this page
Retrieve the user's recipes
GET /api/v1/recipesReturns recipes owned by the authenticated user, including full ingredient and step data. Results appear in creation order, newest first.
Required Scopes
read
Request Body
None.
Responses
200
recipes list
Schema: array[recipe_output]
recipe_output
| Field | Type | Required | Description |
|---|---|---|---|
id |
integer | yes | |
slug |
string | yes | |
name |
string | yes | |
description |
string | yes | |
description_html |
string | yes | |
locale |
string | yes | |
serving |
integer | yes | |
serving_type |
string | yes | |
visibility |
string | yes | |
account |
account_output |
yes | |
likes_count |
integer | yes | |
boosts_count |
integer | yes | |
liked |
boolean | yes | |
boosted |
boolean | yes | |
collection_ids |
array[integer] | yes | |
created_at |
string | yes | |
published_at |
string | yes | |
ingredients |
array[ingredient_output] |
yes | |
steps |
array[] | yes |
