POST
/api/send-message
Sends a message containing a location pin.
Send Location
Send a message containing a location pin. Provide the latitude and longitude within the location
object parameter. You can optionally include a name
and address
for the location.
Parameters
Name | Type | Required | Description |
---|---|---|---|
to | string | Yes | Recipient phone number in E.164 format or, Group JID. |
text | string | No | The text content of the message. Required if no media/contact/location is sent. |
location | object | Yes | Location object. |
Code Examples
curl -X POST "https://www.wasenderapi.com/api/send-message"
-H "Authorization: Bearer YOUR_API_KEY"
-H "Content-Type: application/json"
-d '{
"to": "+1234567890",
"text": "Our office location",
"location": {
"latitude": 37.7749,
"longitude": -122.4194,
"name": "Company HQ",
"address": "123 Business St, San Francisco, CA 94105"
}
}'
Response Examples
{
"success": true,
"data": {
"msgId": 100000,
"jid": "+123456789",
"status": "in_progress"
}
}