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 search API Playground
Returns results from Google Maps based on search options. Rate limit is enforced at 1 request per second.
POSTapiKey5 credits/requestgoogle.mapSearchResponseDocGoogle Map
Endpoint details
Returns results from Google Maps based on search options. Rate limit is enforced at 1 request per second.
- Method
- POST
- Path
- /google/map/search
- Authentication
- apiKey
- Credit cost
- 5 credits/request
- Platform
- Google Map
- Parameters
- 2 documented fields
Request parameters
mapSearchOption:bodyx-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,
"longitude": 151.2056158
}
]
}cURL example
curl "https://api.crawlora.net/api/v1/google/map/search" \
-H "x-api-key: <api-key>" \
-X POST \
--data "{}"