Get Message Info

Supported & Tested

Get metadata for a stored message.

POSThttps://api.waplix.io/api/v1/messages/info
Authentication
Authorization: Bearer YOUR_API_KEY
Parameters Specification
instance_id
stringReq

Required Waplix instance id

message_id
stringReq

Required WhatsApp message id or local log id

Usage Notes
Verified on production. Public documentation uses sanitized example data only.
Request Payload Example
Request
curl -X POST "https://api.waplix.io/api/v1/api/v1/messages/info" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "instance_id": "demo_instance",
  "message_id": "MSG_DEMO_001",
  "chat_id": "15551234567@s.whatsapp.net"
}'
Success Response
Response · 200 OK
{
  "success": true,
  "data": {
    "instance_id": "demo_instance",
    "source": "message_logs",
    "message_id": "MSG_DEMO_001",
    "chat_id": "15551234567@s.whatsapp.net",
    "from": null,
    "to": "15551234567@s.whatsapp.net",
    "message_type": "text",
    "timestamp": "2026-06-27T17:44:15.000Z",
    "status": "READ",
    "ack": "READ"
  }
}
Was this page helpful?