In this section
← Baking
- Retrieve bakings linked from a baking
- Publish a baking
- Unpublish a baking
- Retrieve all of the user's bakings
- Create a new baking
- Retrieve the specified baking by its id
- Update an existing baking
- Delete a baking
- Boost a baking
- Unboost a baking
- Create a new media for a baking
- Update a media for a baking
- Delete a media for a baking
On this page
Retrieve the specified baking by its id
GET /api/v1/bakings/{id}Fetch a single baking by its numeric ID. Publicly accessible without authentication. Returns the full baking object including linked recipe and status.
Required Scopes
None (public endpoint).
Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
id |
path | yes | integer |
Request Body
None.
Responses
200
single baking
Schema: baking_output
baking_output
| Field | Type | Required | Description |
|---|---|---|---|
id |
integer | yes | |
name |
string | yes | |
description |
string | yes | |
description_html |
string | yes | |
status |
string | yes | |
serving |
integer | yes | |
prepared_at |
string | yes | |
recipe_id |
integer | no | |
serving_type |
string | no | |
likes_count |
integer | yes | |
boosts_count |
integer | yes | |
liked |
boolean | yes | |
boosted |
boolean | yes | |
published_at |
string | yes | |
account |
account_output |
yes | |
ingredients |
array[ingredient_output] |
yes | |
steps |
array[] | yes | |
media |
array[medium_output] |
yes |
Prev
Create a new baking
