> ## Documentation Index
> Fetch the complete documentation index at: https://docs.apifycloud.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Location

> Send a WhatsApp location message

## Request

`type` must be `location`.

### Field types

* `to`: string (required)
* `type`: string = `location` (required)
* `location`: object (required)
* `location.latitude`: number (required)
* `location.longitude`: number (required)
* `location.name`: string (optional)
* `location.address`: string (optional)

```json theme={null}
{
  "to": "+573001112233",
  "type": "location",
  "location": {
    "latitude": 4.60971,
    "longitude": -74.08175,
    "name": "Bogota",
    "address": "Bogota, Colombia"
  }
}
```
