GET /api/v1/recipes/{id}

Fetch a single recipe by its numeric ID. Publicly accessible without authentication. Returns the full recipe including all ingredients and steps.

Required Scopes

None (public endpoint).

Parameters

Name In Required Type Description
id path yes integer

Request Body

None.

Responses

200

single recipe

Schema: 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
ingredients array[ingredient_output] yes
steps array[] yes