GET /maps/api/place/nearbysearch/json
A Nearby Search lets you search for places within a specified area. You can refine your search request by supplying keywords or specifying the type of place you are searching for.
Servers
- https://www.googleapis.com
- https://maps.googleapis.com
- https://roads.googleapis.com
Query parameters
Name | Type | Required | Description |
---|---|---|---|
name |
String | No |
Equivalent to |
opennow |
String | No |
Returns only those places that are open for business at the time the query is sent. Places that do not specify opening hours in the Google Places database will not be returned if you include this parameter in your query. |
location |
String | No |
(Required) The point around which to retrieve place information. This must be specified as |
radius |
String | No |
Defines the distance (in meters) within which to return place results. You may bias results to a specified circle by passing a The radius will automatically be clamped to a maximum value depending on the type of search and other parameters.
|
type |
String | No |
Restricts the results to places matching the specified type. Only one type may be specified. If more than one type is provided, all types following the first entry are ignored.
See the list of supported types. Note: Adding both `keyword` and `type` with the same value (`keyword=cafe&type=cafe` or `keyword=parking&type=parking`) can yield `ZERO_RESULTS`.
|
rankby |
String | No |
Specifies the order in which results are listed. Possible values are:
|
keyword |
String | No |
The text string on which to search, for example: "restaurant" or "123 Main Street". This must be a place name, address, or category of establishments. Any other types of input can generate errors and are not guaranteed to return valid results. The Google Places service will return candidate matches based on this string and order the results based on their perceived relevance. Explicitly including location information using this parameter may conflict with the location, radius, and rankby parameters, causing unexpected results. If this parameter is omitted, places with a business_status of CLOSED_TEMPORARILY or CLOSED_PERMANENTLY will not be returned. |
maxprice |
String | No |
Restricts results to only those places within the specified range. Valid values range between 0 (most affordable) to 4 (most expensive), inclusive. The exact amount indicated by a specific value will vary from region to region. |
pagetoken |
String | No |
Returns up to 20 results from a previously run search. Setting a |
minprice |
String | No |
Restricts results to only those places within the specified range. Valid values range between 0 (most affordable) to 4 (most expensive), inclusive. The exact amount indicated by a specific value will vary from region to region. |
language |
String | No |
The language in which to return results.
|
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.