Skip to main content
A transcript started event emits when Daily begins to transcribe a call. These can be activated via startTranscription(), via the REST API, or from within your client.

Common fields

version
string
Represents the version of the event. Uses semantic versioning to inform a consumer if the payload has introduced any breaking changes.
type
string
Represents the type of the event described in the payload.
id
string
An identifier representing this specific event.
payload
object
An object representing the event, whose fields are described below.
event_ts
number
Documenting when the webhook itself was sent. This timestamp is different than the time of the event the webhook describes.

Payload

id
string
The unique identifier for the transcription event.
info
object
Additional information related to the transcription event.
room_id
string
The ID of the room where the event occurred.
room_name
string
The name of the room where the event occurred.
mtg_session_id
string
The meeting session ID related to the event.
max_participants
integer
The maximum number of participants allowed in the transcription session.
duration
integer
The duration of the session in seconds.
participant_minutes
integer
The cumulative participant minutes for the transcription session.
status
string
The current status of the transcription event.
out_params
object
The output parameters of the transcription event.
{
  "version": "1.1.0",
  "type": "transcript.started",
  "id": "3431-tra-sta-68f65d4c-a4dc-4179-bbb1-c12432afb924",
  "payload": {
    "id": "68f65d4c-a4dc-4179-bbb1-c12432afb924",
    "info": {
      "instanceId": "a1f2f6b7-b1ac-4202-85e5-d446cb6c3d3f"
    },
    "room_id": "9e3c9e1b-bfbe-4753-b908-fd89cecfd4a7",
    "room_name": "my-transcript-room",
    "mtg_session_id": "a2bc876d-2816-4732-9c87-01e0b8c0b01b",
    "max_participants": 1,
    "duration": 0,
    "participant_minutes": 0,
    "status": "t_in_progress",
    "out_params": {
      "s3": {
        "key": "domain/room/1733234355482.vtt",
        "bucket": "daily-co-transcription-staging",
        "region": "us-west-2"
      }
    }
  },
  "event_ts": 1733234355.505
}