---
title: "Get Dubbing Target Transcript"
method: GET
path: "/v1/dubbing/project/{project_id}/language/{language_id}/transcript"
tags: ["Dubbing"]
---

# Get Dubbing Target Transcript

`GET /v1/dubbing/project/{project_id}/language/{language_id}/transcript`

A language target's transcript: source segments with their translations. Available once the target has produced an output. Returns a conflict while the target is still on its first dub, since it has no translations to return yet.

## Path parameters

- `project_id` string, required — Identifier of the dubbing project.
- `language_id` string, required — Identifier of the language target.

## Headers

- `xi-api-key` string, nullable — Your API key. This is required by most endpoints to access our API programmatically. You can view your xi-api-key using the 'Profile' tab on the website.

## Response `200`

Successful Response

- DubbingTargetTranscriptResponse
  - `source_language` string, nullable — BCP-47 language tag of the source transcript.
  - `target_language` string, required — BCP-47 language tag this target is translated into.
  - `segments` DubbingTargetTranscriptSegment[], required — The target segments, in playback order.
    - `id` string, required — Stable identifier of the segment (from the source).
    - `speaker_id` string, required — Identifier of the segment's speaker.
    - `start_s` number, required — Start time of the segment, in seconds.
    - `end_s` number, required — End time of the segment, in seconds.
    - `source_text` string, required — The source-language text of the segment.
    - `translation` string, nullable — The translated text, or null if not translated yet (needs translation).
  - `revision` integer, required — The target's revision at read time.

## Other responses

- `422` — Validation Error

---

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