Own Recipes

Retrieve the list of own recipes

Please refer to the User's recipe documentation for a new and improved way for searching your own recipes for food logging or other purposes.

Available Fields

The following fields are displayed in the response:

Field

Type

Description

id

ID

Id of the own recipe

name

String

Name of the recipe

quantity

Int

Quantity of the recipe

ingredients

A structured version of a recipe ingredients

nutritionalInfo

A structured version of the nutritional information

{
  ownRecipes {
    edges {
      node {
        id
        databaseId
        name
        quantity
        nutritionalInfo {
          calories
          fat
          protein
          carbs
        }
        ingredients {
          id
          quantity
          serving
        }
      }
    }
  }
}

Last updated