Google Local Discover More Places API

The Google Local Discover More Places API allows a user to scrape the results of Google Local search. SerpApi is able to make sense of this information and extract title, link, places, images, and more.

JSON structure overview

{
  "discover_more_places": [
    {
      "title": "String - Search query",
      "link": "String - URL to the Google Local search",
      "serpapi_link": "String - URL to the SerpApi search",
      "places": "String - List of places",
      "thumbnail": "String - URL to the image thumbnail",
      "images": [
        "String - URL to the image",
        ...
      ]
    },
    ...
  ]
}

Results for: Coffee

Results for: Coffee

JSON Example

{
  "discover_more_places": [
    {
      "title": "Best coffee",
      "link": "https://www.google.co.uk/search?gl=uk&hl=en&tbm=lcl&q=best+coffee&rflfq=1&num=10&uule=w+CAQQCFISCXXeIa8LoNhHEZkq1d1aOpZS&lsspp=CdHWBfKpzT9iCeAVEnCfT7iyCVUpEUn-oJc6&rlt=Best+coffee&owsq=Coffee&sa=X&ved=2ahUKEwjoqdHImoH-AhXjl2oFHSaJCGMQ9s8CegQIGhAE",
      "serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=google_local&gl=uk&google_domain=google.co.uk&hl=en&q=Best%20coffee&uule=w%20CAQQCFISCXXeIa8LoNhHEZkq1d1aOpZS",
      "places": "Notes Coffee Roasters & Bar | Trafalgar Square, The Espresso Room",
      "images": [
        "<URL to image>",
        ...
      ]
    },
    {
      "title": "Coffee shops",
      "link": "https://www.google.co.uk/search?gl=uk&hl=en&tbm=lcl&q=Coffee+shops&rflfq=1&num=10&uule=w+CAQQCFISCXXeIa8LoNhHEZkq1d1aOpZS&lsspp=Ce_ZpCKWKlrBCd-lFVXUYor9CRo-HJaqf0Ng&rlt=Coffee+shops&owsq=Coffee&sa=X&ved=2ahUKEwjoqdHImoH-AhXjl2oFHSaJCGMQ9s8CegQIGhAG",
      "serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=google_local&gl=uk&google_domain=google.co.uk&hl=en&q=Coffee%20shops&uule=w%20CAQQCFISCXXeIa8LoNhHEZkq1d1aOpZS",
      "places": "Caffè Nero, Coffee Island",
      "images": [
        "<URL to image>",
        ..."
      ]
    }
  ]
}