The WhatsApp API supports the following video types:
- video/mp4 (.mp4)
- video/3gp (.3gp)
The maximum file size allowed for videos is 15 MB.
PARAMETER | FORMAT | REQUIRED | DESCRIPTION | DEFAULT |
url | string | Yes | The URL that your video file is uploaded to should be publicly accessible | |
caption | string | Optional | Video caption |
Sample request using CURL:
$ curl -X POST https://api.geniq.io/rest/v1/whatsapp/messages \
-H 'Authorization: Bearer [TOKEN]' \
-H 'Content-Type: application/json' \
-d '{
"recipient":"6591234567",
"type":"video",
"url":"https://videos.pexels.com/video-files/3209828/3209828-uhd_3840_2160_25fps.mp4",
"caption":"Sample Video",
"reference": "12345"
}' \