Public Playground
Preview the endpoint before sending a live request
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Playground
Google Maps place details API Playground
Returns detailed information for a specified place_id. Rate limit is enforced at 1 request per second.
GETapiKey5 credits/requestgoogle.mapPlaceResponseDocGoogle Map
Endpoint details
Returns detailed information for a specified place_id. Rate limit is enforced at 1 request per second.
- Method
- GET
- Path
- /google/map/place/{place_id}
- Authentication
- apiKey
- Credit cost
- 5 credits/request
- Platform
- Google Map
- Parameters
- 2 documented fields
Request parameters
place_id:pathx-api-key:header
Response schema fields
codedatadata.addressdata.amenitiesdata.categorydata.descriptiondata.imagedata.latitudedata.locationsdata.longitudedata.namedata.phone
Sample response summary
{
"code": 200,
"msg": "OK",
"data": {
"url": "https://www.google.com/maps/place/?q=place_id:ChIJs3cv0KuvEmsRHcXYwNJ6GU0",
"name": "Primi Italian",
"place_id": "ChIJs3cv0KuvEmsRHcXYwNJ6GU0",
"category": [
"italian_restaurant"
],
"address": "168 Clarence St,Sydney NSW 2000,Australia",
"latitude": -33.8701437
}
}cURL example
curl "https://api.crawlora.net/api/v1/google/map/place/<place_id>" \
-H "x-api-key: <api-key>"