Google Maps
Google Maps place.info
Fetch a Google Maps place from its URL. Normalized JSON, one price per record, automatic failover across sources.
POST
/
v1
/
googlemaps
/
place.info
curl -X POST https://api.socialrouter.io/v1/googlemaps/place.info \
-H "Authorization: Bearer sr_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2919064,17z"
}'
const response = await fetch(
"https://api.socialrouter.io/v1/googlemaps/place.info",
{
method: "POST",
headers: {
"Authorization": "Bearer sr_live_your_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
url: "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2919064,17z"
}),
},
);
import requests
response = requests.post(
"https://api.socialrouter.io/v1/googlemaps/place.info",
headers={"Authorization": "Bearer sr_live_your_key"},
json={
"url": "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2919064,17z"
},
)
const run = await sr.run("googlemaps/place.info", {
url: "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2919064,17z"
});
{
"id": "ext_a1b2c3d4",
"status": "completed",
"platform": "googlemaps",
"service": "place.info",
"url": "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2919064,17z",
"served_by": "apify/compass",
"data": [
{
"name": "Eiffel Tower",
"title": "Historical landmark",
"location": "Av. Gustave Eiffel, 75007 Paris, France",
"profile_url": "https://www.google.com/maps/search/?api=1&query=Eiffel%20Tower&query_place_id=ChIJLU7jZClu5kcR4PcOOO6p3I0",
"source": "googlemaps",
"extracted_at": "2026-07-16T09:26:42.724Z",
"place_id": "ChIJLU7jZClu5kcR4PcOOO6p3I0",
"fid": "0x47e66e2964e34e2d:0x8ddca9ee380ef7e0",
"cid": "10222232094831998944",
"kgmid": "/m/02j81",
"address": "Av. Gustave Eiffel, 75007 Paris, France",
"street": "Av. Gustave Eiffel",
"city": "Paris",
"postal_code": "75007",
"country_code": "FR",
"plus_code": "V75V+8Q Paris, France",
"lat": 48.8583701,
"lng": 2.2944813,
"located_in": "Champ de Mars",
"subtitle": "Tour Eiffel",
"description": "Gustave Eiffel's iconic, wrought-iron 1889 tower, with steps and elevators to observation decks.",
"category_name": "Historical landmark",
"categories": [
"Historical landmark",
"... 2 more"
],
"website": "https://www.toureiffel.paris/fr",
"total_score": 4.7,
"reviews_count": 493169,
"reviews_distribution": {
"oneStar": 9871,
"twoStar": 5959,
"threeStar": 19687,
"fourStar": 63188,
"fiveStar": 394464
},
"reviews_tags": [
{
"title": "light show",
"count": 2468
},
"... 9 more"
],
"image_url": "https://lh3.googleusercontent.com/gps-cs-s/AHRPTWkRFs0h9E1ewAWZdLZkSHE17eM4u6EYgri9PjSrBeQ2SUmH6WPs8GIlTV64na7t4lwSD5...",
"images_count": 1708924,
"image_categories": [
"All",
"... 5 more"
],
"opening_hours": [
{
"day": "Monday",
"hours": "9 AM to 12 AM"
},
"... 6 more"
],
"popular_times_histogram": {
"Su": [
"... 18 item(s)"
],
"Mo": [
"... 18 item(s)"
],
"Tu": [
"... 18 item(s)"
],
"We": [
"... 18 item(s)"
],
"Th": [
"... 18 item(s)"
],
"Fr": [
"... 18 item(s)"
],
"Sa": [
"... 18 item(s)"
]
},
"popular_times_live_text": "Not too busy",
"popular_times_live_percent": 34,
"search_string": "place_id:ChIJLU7jZClu5kcR4PcOOO6p3I0",
"input_start_url": "https://www.google.com/maps/search/?api=1&query=ChIJLU7jZClu5kcR4PcOOO6p3I0&query_place_id=ChIJLU7jZClu5kcR4PcOOO6p3I0",
"language": "en",
"scraped_at": "2026-07-16T09:26:41.354Z",
"people_also_search": [
{
"category": "People also search for",
"title": "Jardin de la Tour Eiffel",
"reviewsCount": 2042,
"totalScore": 4.5
},
"... 2 more"
],
"places_tags": [
{
"title": "Food & Drink",
"count": 4
},
"... 1 more"
],
"additional_info": {
"Service options": [
"... 1 item(s)"
],
"Accessibility": [
"... 4 item(s)"
],
"Planning": [
"... 1 item(s)"
],
"Children": [
"... 1 item(s)"
],
"Parking": [
"... 2 item(s)"
]
},
"updates_from_customers": {
"text": "13 juillet 2026",
"language": "fr",
"postDate": "Edited a day ago",
"postedBy": {
"name": "Arian",
"url": "https://www.google.com/maps/contrib/106466737659793047269?hl=en-US",
"title": "Local Guide",
"totalReviews": 174
},
"media": [
"... 8 item(s)"
]
},
"restaurant_data": {
"tableReservationProvider": null
}
}
],
"pagination": {
"total": 1,
"returned": 1
},
"created_at": "2026-07-30T12:00:00Z",
"completed_at": "2026-07-30T12:00:03Z"
}
Fetch a Google Maps place from its URL. The response is normalized, so it keeps the same shape whichever offer served it.
The call is synchronous and comes back
Prices are live in the catalogue:
completed or failed. Body fields and error codes shared by every service are documented on Run a service.
Body
string[]
required
The URLs to fetch, as
urls (array) or url (single string). Each one must match an accepted format below, and a mismatch returns 400 invalid_input_format before any routing or billing.string
Single-input form of
urls.number
default:"100"
Maximum number of records to return. Integer, 1-250.
string
Pin one offer, as
source/name. Serving this service: brightdata/googlemaps, apify/compass. Omit it (the default) to let the router walk the failover chain.object
This service declares no options. Any key sent here returns a corrective
400.Accepted URL formats
| Format | Example |
|---|---|
https://www.google.com/maps/place/<name>/... | https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2919064,17z |
<place_id> (Google Place ID) | ChIJJQz5EZzKw4kRCZ95UajbyGw |
Offers
In failover order. The head serves unless you pin another withprovider, and served_by in the response names the one that answered.
| Offer | Inputs per call |
|---|---|
brightdata/googlemaps | 1000 |
apify/compass | 100 |
GET /v1/services/googlemaps/place.info. See Credits for how a call is billed.
Response
data[] holds the normalized records, served_by names the offer that answered, and credits_used carries the actual charge.
The example response is a real run with values shortened for readability. A field is present when Google Maps exposes it for that item, so the exact set varies record to record.
curl -X POST https://api.socialrouter.io/v1/googlemaps/place.info \
-H "Authorization: Bearer sr_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2919064,17z"
}'
const response = await fetch(
"https://api.socialrouter.io/v1/googlemaps/place.info",
{
method: "POST",
headers: {
"Authorization": "Bearer sr_live_your_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
url: "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2919064,17z"
}),
},
);
import requests
response = requests.post(
"https://api.socialrouter.io/v1/googlemaps/place.info",
headers={"Authorization": "Bearer sr_live_your_key"},
json={
"url": "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2919064,17z"
},
)
const run = await sr.run("googlemaps/place.info", {
url: "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2919064,17z"
});
{
"id": "ext_a1b2c3d4",
"status": "completed",
"platform": "googlemaps",
"service": "place.info",
"url": "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2919064,17z",
"served_by": "apify/compass",
"data": [
{
"name": "Eiffel Tower",
"title": "Historical landmark",
"location": "Av. Gustave Eiffel, 75007 Paris, France",
"profile_url": "https://www.google.com/maps/search/?api=1&query=Eiffel%20Tower&query_place_id=ChIJLU7jZClu5kcR4PcOOO6p3I0",
"source": "googlemaps",
"extracted_at": "2026-07-16T09:26:42.724Z",
"place_id": "ChIJLU7jZClu5kcR4PcOOO6p3I0",
"fid": "0x47e66e2964e34e2d:0x8ddca9ee380ef7e0",
"cid": "10222232094831998944",
"kgmid": "/m/02j81",
"address": "Av. Gustave Eiffel, 75007 Paris, France",
"street": "Av. Gustave Eiffel",
"city": "Paris",
"postal_code": "75007",
"country_code": "FR",
"plus_code": "V75V+8Q Paris, France",
"lat": 48.8583701,
"lng": 2.2944813,
"located_in": "Champ de Mars",
"subtitle": "Tour Eiffel",
"description": "Gustave Eiffel's iconic, wrought-iron 1889 tower, with steps and elevators to observation decks.",
"category_name": "Historical landmark",
"categories": [
"Historical landmark",
"... 2 more"
],
"website": "https://www.toureiffel.paris/fr",
"total_score": 4.7,
"reviews_count": 493169,
"reviews_distribution": {
"oneStar": 9871,
"twoStar": 5959,
"threeStar": 19687,
"fourStar": 63188,
"fiveStar": 394464
},
"reviews_tags": [
{
"title": "light show",
"count": 2468
},
"... 9 more"
],
"image_url": "https://lh3.googleusercontent.com/gps-cs-s/AHRPTWkRFs0h9E1ewAWZdLZkSHE17eM4u6EYgri9PjSrBeQ2SUmH6WPs8GIlTV64na7t4lwSD5...",
"images_count": 1708924,
"image_categories": [
"All",
"... 5 more"
],
"opening_hours": [
{
"day": "Monday",
"hours": "9 AM to 12 AM"
},
"... 6 more"
],
"popular_times_histogram": {
"Su": [
"... 18 item(s)"
],
"Mo": [
"... 18 item(s)"
],
"Tu": [
"... 18 item(s)"
],
"We": [
"... 18 item(s)"
],
"Th": [
"... 18 item(s)"
],
"Fr": [
"... 18 item(s)"
],
"Sa": [
"... 18 item(s)"
]
},
"popular_times_live_text": "Not too busy",
"popular_times_live_percent": 34,
"search_string": "place_id:ChIJLU7jZClu5kcR4PcOOO6p3I0",
"input_start_url": "https://www.google.com/maps/search/?api=1&query=ChIJLU7jZClu5kcR4PcOOO6p3I0&query_place_id=ChIJLU7jZClu5kcR4PcOOO6p3I0",
"language": "en",
"scraped_at": "2026-07-16T09:26:41.354Z",
"people_also_search": [
{
"category": "People also search for",
"title": "Jardin de la Tour Eiffel",
"reviewsCount": 2042,
"totalScore": 4.5
},
"... 2 more"
],
"places_tags": [
{
"title": "Food & Drink",
"count": 4
},
"... 1 more"
],
"additional_info": {
"Service options": [
"... 1 item(s)"
],
"Accessibility": [
"... 4 item(s)"
],
"Planning": [
"... 1 item(s)"
],
"Children": [
"... 1 item(s)"
],
"Parking": [
"... 2 item(s)"
]
},
"updates_from_customers": {
"text": "13 juillet 2026",
"language": "fr",
"postDate": "Edited a day ago",
"postedBy": {
"name": "Arian",
"url": "https://www.google.com/maps/contrib/106466737659793047269?hl=en-US",
"title": "Local Guide",
"totalReviews": 174
},
"media": [
"... 8 item(s)"
]
},
"restaurant_data": {
"tableReservationProvider": null
}
}
],
"pagination": {
"total": 1,
"returned": 1
},
"created_at": "2026-07-30T12:00:00Z",
"completed_at": "2026-07-30T12:00:03Z"
}
Previous
place.reviewsList the reviews of a Google Maps place. Normalized JSON, one price per record, automatic failover across sources.
Next
⌘I
curl -X POST https://api.socialrouter.io/v1/googlemaps/place.info \
-H "Authorization: Bearer sr_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2919064,17z"
}'
const response = await fetch(
"https://api.socialrouter.io/v1/googlemaps/place.info",
{
method: "POST",
headers: {
"Authorization": "Bearer sr_live_your_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
url: "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2919064,17z"
}),
},
);
import requests
response = requests.post(
"https://api.socialrouter.io/v1/googlemaps/place.info",
headers={"Authorization": "Bearer sr_live_your_key"},
json={
"url": "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2919064,17z"
},
)
const run = await sr.run("googlemaps/place.info", {
url: "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2919064,17z"
});
{
"id": "ext_a1b2c3d4",
"status": "completed",
"platform": "googlemaps",
"service": "place.info",
"url": "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2919064,17z",
"served_by": "apify/compass",
"data": [
{
"name": "Eiffel Tower",
"title": "Historical landmark",
"location": "Av. Gustave Eiffel, 75007 Paris, France",
"profile_url": "https://www.google.com/maps/search/?api=1&query=Eiffel%20Tower&query_place_id=ChIJLU7jZClu5kcR4PcOOO6p3I0",
"source": "googlemaps",
"extracted_at": "2026-07-16T09:26:42.724Z",
"place_id": "ChIJLU7jZClu5kcR4PcOOO6p3I0",
"fid": "0x47e66e2964e34e2d:0x8ddca9ee380ef7e0",
"cid": "10222232094831998944",
"kgmid": "/m/02j81",
"address": "Av. Gustave Eiffel, 75007 Paris, France",
"street": "Av. Gustave Eiffel",
"city": "Paris",
"postal_code": "75007",
"country_code": "FR",
"plus_code": "V75V+8Q Paris, France",
"lat": 48.8583701,
"lng": 2.2944813,
"located_in": "Champ de Mars",
"subtitle": "Tour Eiffel",
"description": "Gustave Eiffel's iconic, wrought-iron 1889 tower, with steps and elevators to observation decks.",
"category_name": "Historical landmark",
"categories": [
"Historical landmark",
"... 2 more"
],
"website": "https://www.toureiffel.paris/fr",
"total_score": 4.7,
"reviews_count": 493169,
"reviews_distribution": {
"oneStar": 9871,
"twoStar": 5959,
"threeStar": 19687,
"fourStar": 63188,
"fiveStar": 394464
},
"reviews_tags": [
{
"title": "light show",
"count": 2468
},
"... 9 more"
],
"image_url": "https://lh3.googleusercontent.com/gps-cs-s/AHRPTWkRFs0h9E1ewAWZdLZkSHE17eM4u6EYgri9PjSrBeQ2SUmH6WPs8GIlTV64na7t4lwSD5...",
"images_count": 1708924,
"image_categories": [
"All",
"... 5 more"
],
"opening_hours": [
{
"day": "Monday",
"hours": "9 AM to 12 AM"
},
"... 6 more"
],
"popular_times_histogram": {
"Su": [
"... 18 item(s)"
],
"Mo": [
"... 18 item(s)"
],
"Tu": [
"... 18 item(s)"
],
"We": [
"... 18 item(s)"
],
"Th": [
"... 18 item(s)"
],
"Fr": [
"... 18 item(s)"
],
"Sa": [
"... 18 item(s)"
]
},
"popular_times_live_text": "Not too busy",
"popular_times_live_percent": 34,
"search_string": "place_id:ChIJLU7jZClu5kcR4PcOOO6p3I0",
"input_start_url": "https://www.google.com/maps/search/?api=1&query=ChIJLU7jZClu5kcR4PcOOO6p3I0&query_place_id=ChIJLU7jZClu5kcR4PcOOO6p3I0",
"language": "en",
"scraped_at": "2026-07-16T09:26:41.354Z",
"people_also_search": [
{
"category": "People also search for",
"title": "Jardin de la Tour Eiffel",
"reviewsCount": 2042,
"totalScore": 4.5
},
"... 2 more"
],
"places_tags": [
{
"title": "Food & Drink",
"count": 4
},
"... 1 more"
],
"additional_info": {
"Service options": [
"... 1 item(s)"
],
"Accessibility": [
"... 4 item(s)"
],
"Planning": [
"... 1 item(s)"
],
"Children": [
"... 1 item(s)"
],
"Parking": [
"... 2 item(s)"
]
},
"updates_from_customers": {
"text": "13 juillet 2026",
"language": "fr",
"postDate": "Edited a day ago",
"postedBy": {
"name": "Arian",
"url": "https://www.google.com/maps/contrib/106466737659793047269?hl=en-US",
"title": "Local Guide",
"totalReviews": 174
},
"media": [
"... 8 item(s)"
]
},
"restaurant_data": {
"tableReservationProvider": null
}
}
],
"pagination": {
"total": 1,
"returned": 1
},
"created_at": "2026-07-30T12:00:00Z",
"completed_at": "2026-07-30T12:00:03Z"
}