find_nearest_toilets
Find the nearest PUBLIC TOILETS to a location (from the National Public Toilet Map). Use this for questions like 'where's the closest toilet to me', 'nearest public toilet', 'is there an RV dump point near here', or 'closest accessible toilet'. Returns toilets sorted by distance with name, address, distance, opening hours, facilities (wheelchair access, baby change, RV dump point, showers, drinking water, etc.) and a directions link. Provide the user's latitude/longitude. If the user says 'near me' and you already have their location from the conversation/context, pass it; otherwise ask for their location or a nearby place name.
Parameters4
| latitude | number | required | Latitude of the search location. |
| limit | integer | optional | Max results to return (default 5, max 25). |
| longitude | number | required | Longitude of the search location. |
| radius_km | number | optional | Search radius in km (default 15). If none are within radius, the closest are returned anyway. |
Raw schema
{
"type": "object",
"properties": {
"latitude": {
"description": "Latitude of the search location.",
"type": "number"
},
"limit": {
"description": "Max results to return (default 5, max 25).",
"type": "integer"
},
"longitude": {
"description": "Longitude of the search location.",
"type": "number"
},
"radius_km": {
"description": "Search radius in km (default 15). If none are within radius, the closest are returned anyway.",
"type": "number"
}
},
"required": [
"latitude",
"longitude"
]
}