Google Recipes Results API
The Google Recipes Results API allows a user to scrape the Recipes results of a Google search. SerpApi is able to scrape, extract, and make sense of this information. When SerpApi encounters Recipes results, we add them to our JSON output. We are able to extract: title
, link
, source
, rating
, reviews
, ingredients
, total_ingredients_original
, total_ingredients
, total_time
, thumbnail
, video
, badge
and more.
API Examples
JSON structure overview
{
...
"recipes_results": [
{
"title": "String - Title of the recipe",
"link": "String - URL to the recipe",
"source": "String - Source of the recipe",
"rating": "Float - Rating of the recipe",
"reviews": "Integer - Number of reviews",
"total_time": "String - Total time to prepare the recipe",
"ingredients": "Array - List of ingredients",
"total_ingredients": "Integer - Total number of ingredients",
"total_ingredients_original": "String - Total ingredients of the recipe",
"thumbnail": "String - Thumbnail of the recipe",
"video": "String - URL to the video of the recipe",
"badge": "String - Badge of the recipe"
},
],
...
}
Results for: cheesecake
{
...
"recipes_results": [
{
"title": "The BEST Cheesecake Recipe",
"link": "https://sugarspunrun.com/best-cheesecake-recipe/",
"source": "Sugar Spun Run",
"rating": 5.0,
"reviews": 187,
"total_time": "1 hr 35 min",
"ingredients": [
"Sour cream",
"graham cracker crumbs",
"brown sugar",
"butter",
"vanilla extract"
],
"thumbnail": "<URL to image>"
},
{
"title": "Cheesecake",
"link": "https://www.foodnetwork.com/recipes/food-network-kitchen/cheesecake-recipe2-2011459",
"source": "Food Network",
"rating": 3.8,
"reviews": 49,
"total_time": "1 hr 20 min",
"ingredients": [
"Cream cheese",
"sour cream",
"graham cracker crumbs",
"raspberry sauce",
"heavy cream"
],
"thumbnail": "<URL to image>"
},
{
"title": "How to Make Perfect Cheesecake",
"link": "https://www.thekitchn.com/how-to-make-perfect-cheesecake-recipe-cooking-lessons-from-the-kitchen-110760",
"source": "The Kitchn",
"rating": 3.5,
"reviews": 710,
"ingredients": [
"Cream cheese",
"sour cream",
"graham cracker",
"butter",
"lemon juice"
],
"thumbnail": "<URL to image>"
}
],
...
}
Results for: tiramisu
{
...
"recipes_results": [
{
"title": "Tiramisù",
"link": "https://ricette.giallozafferano.it/Tiramisu.html",
"source": "Ricette GialloZafferano",
"rating": 4.2,
"reviews": 2852,
"total_time": "46 min",
"thumbnail": "https://serpapi.com/searches/648eb3942c2c2aa053923ebe/images/e1a48effe906de7b2036ed3df3ecab1db8e3d82fafc774f2e24621b333082e6c.jpeg",
"badge": "ANTEPRIMA",
"video": "https://encrypted-vtbn1.gstatic.com/video?q=tbn:ANd9GcR-RBrAFp9Lps9FOodBUKCm4KYwxnl1iEBvu3at-HZroZVqHWGV"
},
{
"title": "Tiramisù",
"link": "https://www.galbani.it/ricette/tiramisu",
"source": "Galbani",
"rating": 5,
"reviews": 40,
"total_time": "30 min",
"thumbnail": "https://serpapi.com/searches/648eb3942c2c2aa053923ebe/images/e1a48effe906de7b2036ed3df3ecab1ddb4d364a4198a6abf138103a2b09ca0c.jpeg"
},
{
"title": "Tiramisù",
"link": "https://www.cucchiaio.it/ricetta/ricetta-tiramisu/",
"source": "Cucchiaio d'Argento",
"rating": 4,
"reviews": 242,
"total_time": "3 h 20 min",
"thumbnail": "https://serpapi.com/searches/648eb3942c2c2aa053923ebe/images/e1a48effe906de7b2036ed3df3ecab1d3dce591f1cd00f22eb0140465a30912f.jpeg"
},
{
"title": "Tiramisù classico: la ricetta originale",
"link": "https://www.cookaround.com/ricetta/tiramisu-classico.html",
"source": "Cookaround",
"rating": 4.2,
"reviews": 75,
"total_time": "15 min",
"thumbnail": "https://serpapi.com/searches/648eb3942c2c2aa053923ebe/images/e1a48effe906de7b2036ed3df3ecab1dbea510ce8effe80a953f74f826ef67ee.jpeg",
"badge": "ANTEPRIMA",
"video": "https://encrypted-vtbn1.gstatic.com/video?q=tbn:ANd9GcRifdgKZqxPXwGpKTklyEz5qbFwb3HTURYFeTNrodGo_BfYI0E3"
}
],
...
}