Google Local Services Place Results API

When Google local Services contain place results, they are parsed and exist within the local_place object in the JSON output. Local Place results can contain: title, rating, reviews, address, phone, description, website, covid_measures, services, images, and more.

To scrape Google Local Services Place with SerpApi, create a search with these parameters:

API Parameters

cid

Required

Parameter defines a unique ID of a place. The ID is available in our Google Local Services API JSON response.

bid

Required

Parameter defines a unique ID of a place. The ID is available in our Google Local Services API JSON response.

pid

Required

Parameter defines a unique ID of a place. The ID is available in our Google Local Services API JSON response.

API Examples

JSON structure overview

{
  "local_place": {
    "title": "String - Title of the business",
    "rating": "Float - Rating of the business",
    "reviews": "Integer - Number of reviews of the business",
    "rating_stars": [
      {
        "stars": "Integer - Rating given",
        "amount": "Integer - Rating amount"
      },
      ...
    ],
    "address": "String - Address of the business",
    "phone": "String - Phone number of the business",
    "website": "String - Website of the business",
    "badge": "String - Google awarded badge of the business",
    "type": "String - Type of the business",
    "checks": [
      "Active bar membership with the State Bar of Texas 24078938"
    ],
    "covid_measures": [
      "String - Covid measure applied by the business",
      ...
    ],
    "description": [
      "String - Information related to the business",
      ...
    ],
    "services": [
      "String - Title of the service provided by the business",
      ...
    ],
    "service_area": "String - Main coverage area of the business",
    "years_in_business": "Integer - Number of years that business is in operation",
    "images": [
      "String - URL to the image",
      ...
    ],
    "hours": {
      "currently": "String - Current open status of the business",
      "week": [
        {
          "monday": "String - Working hours of the business"
        },
        ...
      ]
    },
    "at_this_place": [
      {
        "title": "String - Title of the business",
        "snippet": "String - Description of the business",
        "thumbnail": "String - Thumbnail of the business"
      },
      ...
    ]
  }
}

Results overview

Results overview

JSON Example

{
  "local_place": {
    "title": "Fox Service Company - Electrical",
    "rating": 4.7,
    "reviews": 1422,
    "rating_stars": [
      {
        "stars": 1,
        "amount": 68
      },
      {
        "stars": 2,
        "amount": 16
      },
      {
        "stars": 3,
        "amount": 18
      },
      {
        "stars": 4,
        "amount": 57
      },
      {
        "stars": 5,
        "amount": 1263
      }
    ],
    "phone": "+15128711354",
    "badge": "GOOGLE GUARANTEED",
    "type": "Electrical",
    "checks": [
      "TX State Electrical Contractor’s License 33423"
    ],
    "covid_measures": [
      "Accepting on-site jobs",
      "Accepting urgent jobs",
      "Protective gear used",
      "Maintaining distance",
      "Curbside service",
      "No-contact payments",
      "No cancellation fee",
      "Financing options"
    ],
    "description": [
      "BBB Accredited A+ rated",
      "Smart home electrician",
      "24/7 emergency service",
      "Free consultation",
      "Workmanship guarantee",
      "Still operating"
    ],
    "services": [
      "Install electric car charger",
      "Install fan",
      "Install ground wire",
      "Install light fixtures",
      "Install outdoor lighting",
      "Install outlets or switches",
      "Install security system",
      "Relocate outlets or switches",
      "Repair fan",
      "Repair light fixtures",
      "Repair outlets or switches",
      "Repair panel",
      "Replace or upgrade panel",
      "Restore power"
    ],
    "service_area": "Austin",
    "years_in_business": 53,
    "images": [
      "https://lh3.googleusercontent.com/XV48poBi6yCyYWoVXnwaP7o7oW-pDy1l5kxSP_mR6oiBeZnrmURHoq5mP-zYNg"
    ],
    "hours": {
      "currently": "Open",
      "week": [
        {
          "wednesday": "Open 24 hours"
        },
        {
          "thursday": "Open 24 hours"
        },
        {
          "friday": "Open 24 hours"
        },
        {
          "saturday": "Open 24 hours"
        },
        {
          "sunday": "Open 24 hours"
        },
        {
          "monday": "Open 24 hours"
        },
        {
          "tuesday": "Open 24 hours"
        }
      ]
    }
  }
}