Skip to main content
GET
/
whatsapp
/
conversations
List conversations
curl --request GET \
  --url https://api.kapso.ai/platform/v1/whatsapp/conversations \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": "c63ced48-1283-4d55-8c8d-930f525aa0e5",
      "phone_number": "14155550123",
      "status": "active",
      "last_active_at": "2025-07-16T09:45:00Z",
      "created_at": "2025-06-01T12:00:00Z",
      "updated_at": "2025-07-16T09:45:00Z",
      "metadata": {},
      "phone_number_id": "1234567890",
      "kapso": {
        "contact_name": "Alicia",
        "messages_count": 42,
        "last_message_id": "wamid.HBgMMTIzNDU2",
        "last_message_type": "text",
        "last_message_timestamp": "2025-07-16T09:40:00Z",
        "last_message_text": "Thanks!",
        "last_inbound_at": "2025-07-16T09:35:10Z",
        "last_outbound_at": "2025-07-16T09:40:00Z"
      }
    }
  ],
  "meta": {
    "page": 1,
    "per_page": 20,
    "total_pages": 1,
    "total_count": 1
  }
}

Authorizations

X-API-Key
string
header
required

Query Parameters

phone_number_id
string

Filter by WhatsApp phone number ID

phone_number
string

Filter by contact phone number (partial match)

status
enum<string>

Filter by conversation status

Available options:
active,
ended
created_after
string<date-time>

Filter conversations created after this timestamp

created_before
string<date-time>

Filter conversations created before this timestamp

last_active_after
string<date-time>

Filter conversations active after this timestamp

last_active_before
string<date-time>

Filter conversations active before this timestamp

page
integer
default:1

Page number

per_page
integer
default:20

Items per page

Required range: x <= 100

Response

List of conversations

data
object[]
required
meta
object
required