List Instances

Supported & Tested

Return all WhatsApp instances owned by the authenticated user.

GEThttps://api.waplix.io/api/v1/instances/index
Authentication
Authorization: Bearer YOUR_API_KEY
Usage Notes
No instance ID is required in the query context. Returns the listing of all slots.
Request Payload Example
Request
curl -X GET "https://api.waplix.io/api/v1/instances/index" \
  -H "Authorization: Bearer YOUR_API_KEY"
Success Response
Response · 200 OK
{
  "success": true,
  "items": [
    {
      "instance_id": "demo_instance",
      "status": "connected",
      "phone_number": "15551234567",
      "created_at": "2026-06-22 20:23:17",
      "updated_at": "2026-06-27 17:52:57"
    }
  ]
}
Was this page helpful?