Send a Google Maps place URL and receive structured business data — useful for local intelligence, competitor-density studies, lead-gen pipelines targeting brick-and-mortar businesses, and verifying name-address-phone (NAP) consistency. Google is aggressive with bot defenses, so production usage typically pairs the actor with the residential-proxy option.
Request
Send a POST to /v1/actors/google-maps with a target url. Enable stealth or the residential-proxy option for sites with aggressive bot defenses.
curl -X POST https://api.ollagraph.com/v1/actors/google-maps \
-H "Authorization: Bearer $OLLAGRAPH_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}'Response fields
| Field | Type | Example |
|---|---|---|
name |
string | Empire State Building |
rating |
number | 4.7 |
review_count |
number | 98425 |
address |
string | 20 W 34th St, New York, NY 10001 |
phone |
string | +1 212-736-3100 |
category |
string | Tourist attraction |
coordinates |
object | { lat: 40.7484, lng: -73.9857 } |
Sample response
{
"status": "success",
"url": "https://www.google.com/maps/place/...",
"time_ms": 1640,
"data": {
"name": "Empire State Building",
"rating": 4.7,
"review_count": 98425,
"address": "20 W 34th St, New York, NY 10001",
"phone": "+1 212-736-3100",
"category": "Tourist attraction",
"coordinates": { "lat": 40.7484, "lng": -73.9857 }
}
}Proxy & reliability
Google flags datacenter traffic quickly. Enable the residential-proxy option for production volume.
See the full pipeline in the step-by-step recipe. Part of the actor catalog — all behind one bearer token. Failed calls auto-refund.