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

Choose one catalog endpoint for this request.

2 shown
POSTapiKey5 credits/requestgoogle.mapSearchResponseDocGoogle Map
POST /google/map/search

Google Maps search API

Returns results from Google Maps based on search options. Rate limit is enforced at 1 request per second.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Body (google.MapSearchOption)

Body preview
{
  "country": "us",
  "keyword": "hotel san francisco",
  "language": "en"
}

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

View docs
Sample responsePOST

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "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
    }
  ]
}

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 "{}"