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.


The API endpoint is https://serpapi.com/search?engine=google_local

Head to the playground for a live and interactive demo.

API Examples

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&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": [
        "https://serpapi.com/searches/681d29cd73d1755cc429adea/images/6a0c756c1d2b8e7704acaed9b9085925a96a70823ab0ad5688851d6bcbbd2675.jpeg",
        ...
      ]
    },
    {
      "title": "Coffee shops",
      "link": "https://www.google.co.uk/search?gl=uk&hl=en&tbm=lcl&q=Coffee+shops&rflfq=1&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": [
        "https://serpapi.com/searches/681d29cd73d1755cc429adea/images/6a0c756c1d2b8e7739497c7a41c90be53b840acec71d8aeee2a3a0f94b6c49c1.jpeg",
        ..."
      ]
    }
  ]
}

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