1. Home
  2. Docs
  3. WhatsApp
  4. Send WhatsApp Message
  5. Video Message

Video Message

The WhatsApp API supports the following video types:

  • video/mp4 (.mp4)
  • video/3gp (.3gp)

The maximum file size allowed for videos is 15 MB.

PARAMETERFORMATREQUIREDDESCRIPTIONDEFAULT
urlstringYesThe URL that your video file is uploaded to should be publicly accessible
captionstringOptionalVideo 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"
}' \