> ## Documentation Index
> Fetch the complete documentation index at: https://docs.daily.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Transcript Started

> The transcript started webhook event

A transcript started event emits when Daily begins to transcribe a call. These can be activated via [`startTranscription()`](/reference/daily-js/instance-methods/start-transcription), via the [REST API](/reference/rest-api/rooms/transcription/start), or from within your client.

## Common fields

<ParamField body="version" type="string">
  Represents the version of the event. Uses semantic versioning to inform a consumer if the payload has introduced any breaking changes.
</ParamField>

<ParamField body="type" type="string">
  Represents the type of the event described in the payload.
</ParamField>

<ParamField body="id" type="string">
  An identifier representing this specific event.
</ParamField>

<ParamField body="payload" type="object">
  An object representing the event, whose fields are described below.
</ParamField>

<ParamField body="event_ts" type="number">
  Documenting when the webhook itself was sent. This timestamp is different than the time of the event the webhook describes.
</ParamField>

## Payload

<ParamField body="id" type="string">
  The unique identifier for the transcription event.
</ParamField>

<ParamField body="info" type="object">
  Additional information related to the transcription event.
</ParamField>

<ParamField body="room_id" type="string">
  The ID of the room where the event occurred.
</ParamField>

<ParamField body="room_name" type="string">
  The name of the room where the event occurred.
</ParamField>

<ParamField body="mtg_session_id" type="string">
  The meeting session ID related to the event.
</ParamField>

<ParamField body="max_participants" type="integer">
  The maximum number of participants allowed in the transcription session.
</ParamField>

<ParamField body="duration" type="integer">
  The duration of the session in seconds.
</ParamField>

<ParamField body="participant_minutes" type="integer">
  The cumulative participant minutes for the transcription session.
</ParamField>

<ParamField body="status" type="string">
  The current status of the transcription event.
</ParamField>

<ParamField body="out_params" type="object">
  The output parameters of the transcription event.
</ParamField>

```json theme={null}
{
  "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
}
```
