---
title: "List speaking sessions"
method: GET
path: "/speakings"
tags: ["Speaking"]
---

# List speaking sessions

`GET /speakings`

Returns a list of speaking sessions for the authenticated customer.

## Query parameters

- `page_size` integer
- `page_token` string

## Response `200`

A list of speaking sessions.

- TtsManagerSpeaking[]
  - `id` string, uuid — The unique identifier of the speaking session. Returned from the `POST /speakings` or `GET /speakings` response.
  - `customer_id` string, uuid — The unique identifier of the customer who owns this speaking session. Returned from the `GET /customers` response.
  - `reference_type` '' | 'call' | 'confbridge' — Type of the referenced entity for the speaking session.
  - `reference_id` string, uuid — The unique identifier of the referenced resource (call or confbridge). Returned from the corresponding resource endpoint.
  - `language` string — TTS language (e.g. en-US)
  - `provider` string — TTS provider (elevenlabs)
  - `voice_id` string — Provider-specific voice ID
  - `direction` '' | 'in' | 'out' | 'both' — Audio injection direction for the speaking session.
  - `status` 'initiating' | 'active' | 'stopped' — Status of the speaking session.
  - `tm_create` string, date-time — Creation timestamp
  - `tm_update` string, date-time — Last update timestamp
  - `tm_delete` string, date-time — Soft-delete timestamp

## Other responses

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

---

[API](https://skmtc.net/voipbin/apis/voipbin-api.md) · [All operations](https://skmtc.net/voipbin/apis/voipbin-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/voipbin/voipbin-api/versions/79e779080bcc/schema)
