Recipe Search
Last updated
Last updated
Recipe search can be performed through generic Graph API search endpoint by passing type=recipe. You can see an example of using this API at Getting Started and at the Showcase.
Only a nutrition
filter accepts filter operators at the moment.
Parameters can be combined. This example returns recipe with energy between 200 and 500 kcal:
Available nutrients for filtering: energy
, fat
, carbohydrate
, protein
You can specify userId to get the personalized result of the search. Whisk considers User Preferences such as diets, avoidances and dislikedIngredients
in recipe search.
Query parameters have more priority than user preferences. It means that, if a user diet is vegan and you pass in parametersdiets=pescatarian
, a response will be recipes which support pescatarian diet
Recipe search response with paging
Recipe content and search metadata
Ingredients from request parameter includeIngredients which was matched
GET
/v1/search?type=recipe
OPERATOR
DESCRIPTION
URL ENCODED FORM
EXAMPLES
>
Greater than
%3E
Return results where recipe energy greater than 100 kcal: nutrition=energy>100
<
Less than
%3C
Return results where a recipe fat less than 20 g: nutrition=fat
>=
Greater than or equal to
%3E%3D
Return results where a recipe carbohydrate is 5 g or more: nutrition=carbohydrate>=5
ATTRIBUTE
TYPE
DESCRIPTION
q
string
Search phrase
limit
integer
This is the maximum number of objects that may be returned per page. Default: 25 Maximum: 500
before
string
This is the cursor to return data on a page before it.
after
string
This is the cursor to return data on a page before it.
labels
array [string]
how to use labels
nutrition
array [string]
nutrition filters e.g. energy>300, energy
minHealthScore
double
filter recipes with healthScore more than specified value
category
string
recipe category depends on a language available categories
excludeIngredients
array [string]
recipes should not have any of these ingredients
includeIngredients
string
Recipes should include this ingredient.
minIngredientsShouldMatch
int
if includeIngredients specified, number of minimum ingredients, which should be matched
maxTimeInMinutes
int
recipes should take this total time at maximum
country
string
Recipes should be from this country. Defaults to 'GB'.
language
string
recipes should be in this language, it allows only ISO 639-1 language codes Default value: en
userId
string
Identifier of a user in Whisk system, more about user
ATTRIBUTE
TYPE
DESCRIPTION
data*
array [RecipeSearchHit]
paging*
FinitePaging
ATTRIBUTE
TYPE
DESCRIPTION
content*
RecipeResponse
matchedIngredients
MatchedIngredient
ATTRIBUTE
TYPE
DESCRIPTION
name
string
Requested ingredient
ATTRIBUTE
TYPE
DESCRIPTION
id*
string
name*
string
description
string
numberOfServings
number
Original number of servings
numberOfServingsScaled
number
Requested number of servings
normalizedIngredients*
array [NormalizedIngredient]
ingredients
array [RawIngredient]
instructions
RecipeInstructions
images
array [ImageContainer]
videos
array [VideoContainer]
source*
RecipeSource
durations
RecipeDurations
labels*
RecipeLabels
nutrition
RecipeNutrition
constraints
RecipeConstraints
saved
RecipeSaved
This field is populated if fields=saved is added to request parameters
author
RecipeAuthor
ATTRIBUTE
TYPE
DESCRIPTION
text*
string
group
string
analysis
RecipeIngredientAnalysis
ATTRIBUTE
TYPE
DESCRIPTION
url
string
URL to original video provider page
contentUrl
string
URL to video file. Actual bytes of the media object
embedUrl
string
An embed format of video with player
playerType
enum
Possible values: flash, html5, silverlight.
thumbnail
string
A thumbnail image relevant to the Video
duration
number
The duration of the recording
height
number
The height of the item
width
number
The width of the item
ATTRIBUTE
TYPE
DESCRIPTION
name*
string
displayName
string
sourceRecipeUrl
string
license
string
image
ImageContainer
ATTRIBUTE
TYPE
DESCRIPTION
mealType*
array [RecipeLabel]
cuisine*
array [RecipeLabel]
category*
array [RecipeLabel]
ATTRIBUTE
TYPE
DESCRIPTION
name*
string
displayName*
string
ATTRIBUTE
TYPE
DESCRIPTION
cookTime
number
Cooking time in minutes
prepTime
number
Preparation time in minutes
totalTime
number
Total time in minutes
ATTRIBUTE
TYPE
DESCRIPTION
cursors*
Cursors
total*
integer
ATTRIBUTE
TYPE
DESCRIPTION
after
string
before
string
ATTRIBUTE
TYPE
DESCRIPTION
product*
string
canonicalName*
string
quantity
number
unit
string
multiplier
number
brand
string
comment
string
category
string
ATTRIBUTE
TYPE
DESCRIPTION
text*
string
group
string
images
array [ImageContainer]
ATTRIBUTE
TYPE
DESCRIPTION
steps*
array [RecipeInstruction]
ATTRIBUTE
TYPE
DESCRIPTION
value
boolean
True if this recipe is saved to favorites
collectionIds
array [string]
owner
boolean
If current user is owner of the recipe
type
enum
Recipe type Possible values: manual, imported.
ATTRIBUTE
TYPE
DESCRIPTION
name*
string
image
ImageContainer
ATTRIBUTE
TYPE
DESCRIPTION
url*
string
original image url, depricated. Please use field original instead
original
OriginalImage
original image information, e.g. image url
responsive*
ResponsiveImage
ATTRIBUTE
TYPE
DESCRIPTION
url*
string
Hosted url of an image
width*
integer
Image width
height*
integer
Image height