Search_for_nearby_places
Find places within a specified radius of a location by inputting latitude/longitude, distance, and type of place. Supports multiple languages and integrates with the API-Market MCP Server for easy access.
Instructions
Search for places around location within a specified radius.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | The two-letter language code in which to return results (ISO 639-1) | |
location | Yes | The latitude/longitude around which to retrieve places | |
radius | No | The distance (in meters) within which to return results. Max = 10000 m. | |
type | No | The type of places that are returned |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"description": "The two-letter language code in which to return results (ISO 639-1)",
"type": "string"
},
"location": {
"description": "The latitude/longitude around which to retrieve places",
"type": "string"
},
"radius": {
"description": "The distance (in meters) within which to return results. Max = 10000 m.",
"type": "integer"
},
"type": {
"description": "The type of places that are returned",
"type": "string"
}
},
"required": [
"location"
],
"type": "object"
}