---
title: "Get a list of webchat sessions."
method: GET
path: "/webchat_sessions"
tags: ["Webchat"]
---

# Get a list of webchat sessions.

`GET /webchat_sessions`

Retrieves a paginated list of webchat sessions for the authenticated customer.

## Query parameters

- `page_size` integer
- `page_token` string
- `widget_id` string, uuid

## Response `200`

A list of webchat sessions.

- object
  - `next_page_token` string — Cursor token for the next page of results. Pass this value as the page_token parameter in the next request.
  - `result` WebchatManagerSession[]
    - `id` string, uuid, required — The unique identifier of the session, and the visitor's continuity token. Returned from the `POST /sessions` or `GET /sessions` response.
    - `customer_id` string, uuid, required — The unique identifier of the associated customer. Returned from the `GET /customers` response.
    - `widget_id` string, uuid, required — The widget this session belongs to. Returned from the `POST /widgets` or `GET /widgets` response.
    - `status` 'active' | 'ended', required — The status of the session.
    - `tm_last_activity` string, date-time — Timestamp of the last activity on this session.
    - `tm_create` string, date-time — Timestamp when the session was created.
    - `tm_update` string, date-time — Timestamp when the session was last updated.
    - `tm_end` string, date-time — Timestamp when the session ended.

## Other responses

- `401` — Authentication required (UNAUTHENTICATED).
- `500` — Internal error (INTERNAL).

## Changes

- **2026-07-18** `d90e2d9717dc` — 1 warning
  - removed the optional property `allOf[subschema #2]/result/items/welcome_message` from the response with the `200` status
- **2026-07-17** `37603aee58ea` — 2 info
  - added the new optional `query` request parameter `widget_id`
  - added the optional property `allOf[subschema #2]/result/items/welcome_message` to the response with the `200` status
- **2026-07-16** `39e5a5e6214c` — 1 info
  - endpoint added
- **2026-05-30** `995c56ba9219` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/voipbin/apis/voipbin-api/changes/webchat_sessions/get.md)

---

[API](https://skmtc.dev/voipbin/apis/voipbin-api.md) · [All operations](https://skmtc.dev/voipbin/apis/voipbin-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/voipbin/voipbin-api/revisions/2f2bcffc5f29/schema)
