The two types of requests go to two different access points described here. More importantly though they are different with respect of their use and the format of the requests the access points accept
All requests are done using POST. It is to be used to analyse nutrition for entire recipes – recipe title, ingredient list and istructions included. It saves you time and effort to enter the recipes and the ingredients line by line.
It also calculates all nutrition labels on a meal level so that you can see at a glance what kind of diet the recipe is applicable for.
Finally it adjusts quantity for certain ingredients to account for the cooking pocess. For example it calculates oil absorption for fried recipes, excludes solids from stock and broth recipes, calculates marinate absorption for marinates and much more.
h2.Types
Composite types are described in terms of their JSON representation.
Throughout descriptions, the following notation is used:
integer
, float
, and string
stand for the JavaScript primitive types integer
, float
, and string
, respectivelyenum
stands for a string field that only takes on values from a pre-defined range (the range is specified where essential)T[]
stands for an array of objects of type T
T[*]
stands for an object (associative map) whose every field (element) is of type T
.All requests here are done using GET. This is the classic food database API you are used to. With a twist.
You can submit one ingredient at a time and Edamam will return nutrition and diet labels for the said ingredient. You need to submit together quantity and ingredient, not just ingredient in order to get correct data. ‘1 large potato’ vs ‘one potato’
This way we save you time and effort.
Path: https://api.edamam.com/api/nutrition-details
Returns nutritional information based on a POST
request of the recipe content
The following parameters are part of the POST
request URL:
Parameter | Required | Type | Description |
---|---|---|---|
app_id |
yes | String | Your 3scale application ID |
app_key |
yes | String | Your 3scale application key |
force |
no | Forces the re-evaluation of the recipe. The value, if any, is ignored. |
POST
RequestYou will use a POST request to submit the recipe content—more specifically the recipe title and ingredient list.
The response the API will return will contain nutritional analysis for the recipe based on the information provided.
The contents of the request must be a JSON object with the following format:
Name | Required | Description |
---|---|---|
title |
yes | common name of the recipe |
ingr |
yes | ingredients (array of strings) |
summary |
no | a short description of the recipe |
yield |
no | number of servings |
ttime |
no | total time for preparation |
img |
no | image link (absolute) |
prep |
no | preparation instructions (free text) |
cuisine |
no | type of cuisine |
mealtype |
no | type of meal |
dishtype |
no | type of dish |
url |
no | url of the recipe’s location |
The request must contain the header
Content-Type: application/json
Once you submit a recipe via the API you start paying Edamam a monthly licensing fee for each new analyzed recipe. Sometimes however, you may need to refresh the nutrition data for an already submitted recipe, in case you have lost the nutrition data for example. Submitting a recipe directly will count as analyzing a new recipe and you will be charged again licensing fee for the nutrition information. To avoid that we’ve implemented a system based on HTTP’s Etag mechanism.
First, each successfully processed recipe will also return a tag in the ETag
response header. This value must be preserved together with the recipe. Then, when resubmitting the recipe, you should include the value in the If-None-Match
request header.
There three possible outcomes:
force
parameter. Edamam will know that you are already paying license for the nutrition information for this recipe and you will not be charged twice.ETag
header. You should store that new value and use it for further resubmissions.ETag
hash contains a “signature” for the recipe content the system will respond with HTTP status code 409 – Conflict. In case you used the wrong ETag
you can use correct the code, or if the recipe has changed you can resubmit the recipe as new one (that is, without sending the If-None-Match
header).Licensing count example. You have analyzed 100 recipes the first month, 50 the second month and 1 the third month. The first month you will pay licensing fee for the nutrition of 100 recipes, the second month for 150 and the third for 151. If you don’t analyze any more recipes after the third month you will pay licensing fee for the nutrition for the total of 151 recipes every month thereafter.
POST
requestHere is an example using curl:
This will send the recipe.json
file for processing.
Here is the contents of the recipe.json
file:
HTTP Status code | Content-Type | Type | Description |
---|---|---|---|
200 OK | application/json | Recipe | Recipe object containing number of servings (yield), total calories for the recipe (calories), nutrient content by nutrient type (totalNutrients, totalDaily), diet and health classification (dietLabels, healthLabels) |
404 Not Found | text/html | HTML | The specified URL was not found or couldn’t be retrieved |
422 Uprocessable Entity | text/html | HTML | Couldn’t parse the recipe or extract the nutritional info |
555 | text/html | HTML | Recipe with insufficient quality to process correctly |
Here you can download a sample of the respons with ingredient level nutrition data
Note: Only a subset of the fields may be present, depending on the interface through which the recipe is obtained. Refer to the specific interface description for details.
field | type | description |
---|---|---|
uri |
string |
Ontology identifier |
yield |
integer |
Number of servings |
calories |
float |
Total energy, kcal |
totalNutrients |
NutrientInfo[*] |
Total nutrients |
totalDaily |
NutrientInfo[*] |
% daily value |
dietLabels |
enum[] |
Diet labels: “balanced”, “high-protein”, “high-fiber”, “low-fat”, “low-carb”, “low-sodium” |
healthLabels |
enum[] |
Health labels: “vegan”, “vegetarian”, “dairy-free”, “low-sugar”, “low-fat-abs”, “sugar-conscious”, “fat free”, “gluten free”, “wheat free” |
field | type | description |
---|---|---|
uri |
string |
Ontology identifier |
label |
string |
Display label |
quantity |
float |
Quantity of specified units |
unit |
string |
Units |
Field | Type | Description |
---|---|---|
uri |
string | Ontology identifier |
quantity |
float | Quantity of specified measure |
measure |
Measure | Measure |
weight |
float | Total weight, g |
food |
Food | Food |
Path: https://api.edamam.com/api/nutrition-data
Returns nutritional information for the spcified ingredient.
GET
RequestYou will use a GET request to submit the ingredient.
Parameter | Required | Type | Description |
---|---|---|---|
app_id |
yes | String | Your 3scale application ID |
app_key |
yes | String | Your 3scale application key |
ingr |
yes | String | The ingredient (don’t forget to URL-encode!) |
The API return nutritional analysis for the specified ingredient.
GET
requestAs an example, let’s say we want to find the nutrition information for an apple. You should always include the quantity and the measure, so we’ll have to say “1 large apple
” instead of just “apple
”. We then need to URL-encode this string. In this case, this means to just replace the spaces with %20
, so it becomes “1%20large%20apple
”. Please note, that the quotation marks aren’t part of the string.
Here is an example using curl:
HTTP Status code | Content-Type | Type | Description |
---|---|---|---|
200 OK | application/json | Recipe | Recipe object containing number of servings (yield), total calories for the recipe (calories), nutrient content by nutrient type (totalNutrients, totalDaily), diet and health classification (dietLabels, healthLabels) |
404 Not Found | text/html | HTML | The specified URL was not found or couldn’t be retrieved |
422 Uprocessable Entity | text/html | HTML | Couldn’t parse the recipe or extract the nutritional info |
555 | text/html | HTML | Recipe with insufficient quality to process correctly |
Note: Only a subset of the fields may be present, depending on the interface through which the recipe is obtained. Refer to the specific interface description for details.
field | type | description |
---|---|---|
uri |
string |
Ontology identifier |
calories |
float |
Total energy, kcal |
totalNutrients |
NutrientInfo[*] |
Total nutrients |
totalDaily |
NutrientInfo[*] |
% daily value |
dietLabels |
enum[] |
Diet labels: “balanced”, “high-protein”, “high-fiber”, “low-fat”, “low-carb”, “low-sodium” |
healthLabels |
enum[] |
Health labels: “vegan”, “vegetarian”, “dairy-free”, “low-sugar”, “low-fat-abs”, “sugar-conscious”, “fat free”, “gluten free”, “wheat free” |
field | type | description |
---|---|---|
uri |
string |
Ontology identifier |
label |
string |
Display label |
quantity |
float |
Quantity of specified units |
unit |
string |
Units |
Field | Type | Description |
---|---|---|
uri |
string | Ontology identifier |
quantity |
float | Quantity of specified measure |
measure |
Measure | Measure |
weight |
float | Total weight, g |
food |
Food | Food |
Nutrition labels are shared by recipes and foods alike. They are assigned by Edamam based on the ingredients contained in the food label for CPG foods and by the basic ingredients of each recipe for recipes.
Type | Web Label | API Parameter | Definition |
---|---|---|---|
Diet |
Balanced | balanced | Protein/Fat/Carb values in 15/35/50 ratio |
Diet |
High-Fiber | high-fiber | More than 5g fiber per serving |
Diet |
High-Protein | high-protein | More than 50% of total calories from proteins |
Diet |
Low-Carb | low-carb | Less than 20% of total calories from carbs |
Diet |
Low-Fat | low-fat | Less than 15% of total calories from fat |
Diet |
Low-Sodium | low-sodium | Less than 140mg Na per serving |
Health |
Alcohol | alcohol-free | No alcohol used or contained in the recipe |
Health |
Alcohol-free | alcohol-free | No alcohol used or contained |
Health |
Celery-free | celery-free | does not contain celery or derivatives |
Health |
Crustcean-free | crustacean-free | does not contain crustaceans (shrimp, lobster etc.) or derivatives |
Health |
Dairy | dairy-free | No dairy; no lactose |
Health |
Eggs | egg-free | No eggs or products containing eggs |
Health |
Fish | fish-free | No fish or fish derivatives |
Health |
Gluten | gluten-free | No ingredients containing gluten |
Health |
Kidney friendly | kidney-friendly | per serving – phosphorus less than 250 mg AND potassium less than 500 mg AND sodium: less than 500 mg |
Health |
Kosher | kosher | contains only ingredients allowed by the kosher diet. However it does not guarantee kosher preparation of the ingredients themselves |
Health |
Low potassium | low-potassium | Less than 150mg per serving |
Health |
Lupine-free | lupine-free | does not contain lupine or derivatives |
Health |
Mustard-free | mustard-free | does not contain mustard or derivatives |
Health |
n/a | low-fat-abs | Less than 3g of fat per serving |
Health |
No oil added | No-oil-added | No oil added except to what is contained in the basic ingredients |
Health |
No-sugar | low-sugar | No simple sugars – glucose, dextrose, galactose, fructose, sucrose, lactose, maltose |
Health |
Paleo | paleo | Excludes what are perceived to be agricultural products; grains, legumes, dairy products, potatoes, refined salt, refined sugar, and processed oils |
Health |
Peanuts | peanut-free | No peanuts or products containing peanuts |
Health |
Pescatarian | pecatarian | Does not contain meat or meat based products, can contain dairy and fish |
Health |
Pork-free | pork-free | does not contain pork or derivatives |
Health |
Red meat-free | red-meat-free | does not contain beef, lamb, pork, duck, goose, game, horse, and other types of red meat or products containing red meat. |
Health |
Sesame-free | sesame-free | does not contain sesame seed or derivatives |
Health |
Shellfish | shellfish-free | No shellfish or shellfish derivatives |
Health |
Soy | soy-free | No soy or products containing soy |
Health |
Sugar-conscious | sugar-conscious | Less than 4g of sugar per serving |
Health |
Tree Nuts | tree-nut-free | No tree nuts or products containing tree nuts |
Health |
Vegan | vegan | No meat, poultry, fish, dairy, eggs or honey |
Health |
Vegetarian | vegetarian | No meat, poultry, or fish |
Health |
Wheat-free | wheat-free | No wheat, can have gluten though |