whatsapp_send_location
Send location coordinates to WhatsApp contacts or groups using latitude and longitude data, optionally including place names, addresses, or map links for precise location sharing.
Instructions
Send a location message to a WhatsApp contact or group.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | No | Address of the location (max 1000 characters) | |
| latitude | Yes | Latitude coordinate | |
| longitude | Yes | Longitude coordinate | |
| name | No | Name of the location (max 1000 characters) | |
| to | Yes | Recipient phone number (with @s.whatsapp.net) or group ID (with @g.us) | |
| url | No | URL related to the location (e.g., Google Maps link) |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Address of the location (max 1000 characters)",
"optional": true,
"type": "string"
},
"latitude": {
"description": "Latitude coordinate",
"maximum": 90,
"minimum": -90,
"type": "number"
},
"longitude": {
"description": "Longitude coordinate",
"maximum": 180,
"minimum": -180,
"type": "number"
},
"name": {
"description": "Name of the location (max 1000 characters)",
"optional": true,
"type": "string"
},
"to": {
"description": "Recipient phone number (with @s.whatsapp.net) or group ID (with @g.us)",
"type": "string"
},
"url": {
"description": "URL related to the location (e.g., Google Maps link)",
"optional": true,
"type": "string"
}
},
"required": [
"to",
"latitude",
"longitude"
],
"type": "object"
}