Local Results

Google sometimes returns information about the location of a place in its regular queries as well. To scrape this information you can use the local_results properties.

Local Results examples

Results For q:"burger king"

Local Results example
GET external-link
https://api.searchdata.io/v1?engine=google&api_key=YOUR_API_KEY&q=burger%20king
Code to integrate
external-link
Json Example external-link
{
    ...
	"local_results": {
		"more_locations_link": "/search?tbs=lf:1,lf_ui:4&tbm=lcl&q=burger+king&rflfq=1&num=10&sa=X&ved=2ahUKEwjA8-nmi5fyAhUVCc0KHfeiDqoQjGp6BAg5EEw",
		"places": [
			{
				"position": 1,
				"place_id": "13572381978592032417",
				"rating": 0,
				"title": "Burger King",
				"links": {
					"website": "https://burgerking.com/store-locator/store/restaurant_7365",
					"directions": "#"
				},
				"address": "Ashburn, VA",
				"phone": "(703) 723-1760",
				"hours": "Opens soon ⋅ 6AM"
			},
			{
				"position": 2,
				"place_id": "15284639740532943655",
				"rating": 0,
				"title": "Burger King",
				"links": {
					"website": "https://burgerking.com/store-locator/store/restaurant_7640",
					"directions": "#"
				},
				"address": "Chantilly, VA · In the Dulles Expo Center · (703) 378-1653",
				"phone": "(703) 378-1653",
				"hours": "Opens soon ⋅ 6AM"
			},
			{
				"position": 3,
				"place_id": "9306198689406973476",
				"rating": 0,
				"title": "Burger King",
				"links": {
					"website": "https://burgerking.com/store-locator/store/restaurant_6933",
					"directions": "#"
				},
				"address": "Dulles, VA",
				"phone": "(703) 787-7764",
				"hours": "Opens soon ⋅ 6AM"
			}
		]
	},
    ...
}