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 and more.

API Examples

Results for: cheesecake

Results for: cheesecake

JSON Example

{
  ...
  "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>"
    }
  ],
  ...
}