Google Maps Place
Get full details for a specific place — name, address, phone, hours, rating, and coordinates — by place_id or data_cid.
POST/api/v2/google/maps/place
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonplace_idstringPlace ID (ChIJ...). Provide this or data_cid.
Example: ChIJG-gJw2vKRIYROWi2uwOp8QE
data_cidstringNumeric CID. Provide this or place_id.
Example: 6324466594394968992
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.google.maps_place(place_id="ChIJG-gJw2vKRIYROWi2uwOp8QE")
print(results)Response
"engine": "google_maps",
"type": "place",
"place_id": "ChIJG-gJw2vKRIYROWi2uwOp8QE",
"google_domain": "google.com",
"hl": "en",
"gl": "us"
},
"title": "Epoch Coffee",
"place_id": "ChIJG-gJw2vKRIYROWi2uwOp8QE",
"data_id": "0x8644ca6bc309e81b:0x1f1a903bbb66839",
"data_cid": "140078896924485689",
"provider_id": "/g/1v76_180",
"rating": 4.5,
"reviews": 2497,
"price": "$1–10",
"extracted_price": 1,
"address": "221 W N Loop Blvd, Austin, TX 78751",
"plus_code": "879G+C5 Austin, Texas",
"open_state": "Open 24 hours",
"phone": "(512) 454-3762",
"website": "http://www.epochcoffee.com/",
"description": "Hip coffee shop with light bites. Cool, vibrant small-chain cafe featuring nibbles, tea & carefully brewed espresso drinks.",
},
"title": "Epoch Coffee",
"place_id": "ChIJG-gJw2vKRIYROWi2uwOp8QE",
"data_id": "0x8644ca6bc309e81b:0x1f1a903bbb66839",
"data_cid": "140078896924485689",
"provider_id": "/g/1v76_180",
"rating": 4.5,
"reviews": 2497,
"price": "$1–10",
"extracted_price": 1,
"address": "221 W N Loop Blvd, Austin, TX 78751",
"plus_code": "879G+C5 Austin, Texas",
"open_state": "Open 24 hours",
"phone": "(512) 454-3762",
"website": "http://www.epochcoffee.com/",
"description": "Hip coffee shop with light bites. Cool, vibrant small-chain cafe featuring nibbles, tea & carefully brewed espresso drinks.",
},
"credits_used": 1,
"credits_remaining": 49
}