Recipe Nutrition Widget
Learn how to fetch interactive Spoonacular widgets that display the nutritional data for recipes.
We can use the Spoonacular API to fetch widgets that display recipes’ nutritional values in an interactive way. To do so, we can use the following endpoints based on our use case:
recipe nutrition label widget
recipe nutrition widget
recipe nutrition by ID widget
We can use one of the following recipe IDs for any code widgets in this lesson that require one:
Recipe IDs
Recipe Name | ID |
Classic Fruit Salad | 639600 |
Tex-Mex Burger | 663050 |
Baked Sirloin Steak | 633790 |
Vegan Chana Masala Curry | 1096306 |
Belgian Hot Chocolate | 634818 |
The recipe nutrition label widget endpoint
The recipe nutrition label widget endpoint takes in the ID of a recipe as a path parameter and fetches a widget that displays the nutrition label for a recipe. The recipe nutrition label widget endpoint has a cost of
GET https://api.spoonacular.com/recipes/{id}/nutritionLabel
Here are the request parameters we can use with the recipe nutrition label widget endpoint:
Request Parameters
Parameter | Type | Category | Description |
| Number | Required | The identifier of the recipe for which we’re fetching the label widget. |
| Boolean | Optional | The option, if set to |
| Boolean | Optional | The option, if set to |
| Boolean | Optional | The option, if set to |
| Boolean | Optional | The option, if set to |
Let’s see how to call the API endpoint. Click the “Run” button to execute the code. Please provide the value for RECIPE_ID.
Take a look at the following explanation of the code above:
Line 5: We set and store the ID of a recipe for which we want to fetch the label widget.
Line 8: We use the endpoint URL
/recipes/{id}/nutritionLabelto fetch the Spoonacular widget that displays a nutritional label.Line 11: We assign the API key here to the
apiKeyvariable.Lines 14–17: We define the header parameters for the API call. We can modify or add parameters using the
headerParametersvariable.Line 15: We pass the
apiKeyvariable to thex-api-keyheader parameter.Line 16: We need to set the
content-typeheader parameter totext/html.
Lines 20–22: We define the query parameters for the API call. We can modify or add parameters using the
queryParametersvariable.
The recipe nutrition widget endpoint
The recipe nutrition widget endpoint fetches a widget that displays the nutritional data for a recipe in an interactive way. The recipe nutrition widget endpoint has a cost of showBacklink parameter is set to true. This endpoint utilizes the GET method and uses the following URL:
POST https://api.spoonacular.com/recipes/visualizeNutrition
Here are the request parameters we can use with the recipe nutrition widget endpoint:
Request Parameters
Parameter | Type | Category | Description |
| String | Required | The list of ingredients of the recipe with each ingredient on a new line with the ingredient amount. Here’s an example:
We need to pass this parameter in the request body rather than as a query or path parameter. |
| Number | Optional | The number of the recipe’s servings. We need to pass this parameter in the request body rather than as a query or path parameter. |
| Boolean | Optional | The option, if set to |
| Boolean | Optional | The option, if set to |
| String | Optional | The input language of the response. It can be either |
Let’s see how to call the API endpoint. Click the “Run” button to execute the code.
Take a look at the following explanation of the code above:
Line 2: We use the endpoint URL
/recipes/visualizeNutritionto fetch the Spoonacular widget that displays the nutritional data for a recipe in an interactive way.Lines 5–9: We define the header parameters for the API call. We can modify or add parameters using the
headerParametersvariable.Line 7: We need to set the
acceptheader parameter totext/html.Line 8: We need to set the
content-typeheader parameter toapplication/x-www-form-urlencoded.
Lines 12–14: We define the query parameters for the API call. We can modify or add parameters using the
queryParametersvariable.Lines 17–25: We define the body parameters for the API call. We can modify or add parameters using the
bodyParametersvariable.
The recipe nutrition by ID widget endpoint
The recipe nutrition by ID widget endpoint takes in the ID of a recipe as a path parameter and fetches a widget that displays the nutritional data for a recipe in an interactive way. The recipe nutrition by ID widget endpoint has a cost of
GET https://api.spoonacular.com/recipes/{id}/nutritionWidget
Here are the request parameters we can use with the recipe nutrition by ID widget endpoint:
Request Parameters
Parameter | Type | Category | Description |
| Number | Required | The identifier of the recipe for which we’re fetching the nutrition widget. |
| Boolean | Optional | The option, if set to |
Let’s see how to call the API endpoint. Click the “Run” button to execute the code. Please provide the value for RECIPE_ID.
Take a look at the following explanation of the code above:
Line 2: We set and store the ID of a recipe for which we want to fetch the nutrition widget.
Line 5: We use the endpoint URL
/recipes/{id}/nutritionWidgetto fetch the Spoonacular widget that displays the nutritional data for the recipe in an interactive way.Lines 8–11: We define the header parameters for the API call. We can modify or add parameters using the
headerParametersvariable.Line 10: We need to set the
acceptheader parameter totext/html.
Lines 14–16: We define the query parameters for the API call. We can modify or add parameters using the
queryParametersvariable.