Message Logs

Supported & Tested

List incoming and outgoing message logs for an instance slot.

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

Required Waplix instance id

page
numberOpt

Optional page number

limit
numberOpt

Optional limit parameter (max 100)

Usage Notes
Verified on production. Public documentation uses sanitized example data only.
Request Payload Example
Request
curl -X GET "https://api.waplix.io/api/v1/messages/logs" \
  -H "Authorization: Bearer YOUR_API_KEY"
Success Response
Response · 200 OK
{
  "success": true,
  "items": [
    {
      "instance_id": "demo_instance",
      "direction": "outgoing",
      "from_number": "15551234567",
      "to_number": "15551234567@s.whatsapp.net",
      "message_type": "pin_event",
      "message": "Hello from Waplix API docs.",
      "media_url": null,
      "whatsapp_message_id": "MSG_DEMO_001",
      "status": "SERVER_ACK",
      "created_at": "2026-06-27T17:46:24.000Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 10,
    "total": 1087
  }
}
Was this page helpful?