---
title: "Get transcript"
method: POST
path: "/content/GetTranscript"
tags: ["Content"]
---

# Get transcript

`POST /content/GetTranscript`

Generate transcript from an audio file or episode. Accepts file upload, URL, or episode ID (only one at a time).

## Request body

- union
  - object
    - `audioUrl` string, required — URL to the audio file (.mp3 or .wav format). Cannot be used with audioFile or episodeId.
    - `episodeId` string — ID of an existing episode to transcribe. Cannot be used with audioFile or audioUrl.
    - `callbackData` string — Optional data for webhook callbacks
  - object
    - `audioUrl` string — URL to the audio file (.mp3 or .wav format). Cannot be used with audioFile or episodeId.
    - `episodeId` string, required — ID of an existing episode to transcribe. Cannot be used with audioFile or audioUrl.
    - `callbackData` string — Optional data for webhook callbacks

## Response `200`

Request accepted

- object
  - `request_id` string — Unique ID for tracking the request
  - `status` integer — Initial status code (0)

## Other responses

- `400` — Invalid request (missing parameters, both parameters provided, or invalid audio format)
- `401` — Unauthorized

---

[API](https://skmtc.net/autocontentapi/apis/content-api.md) · [All operations](https://skmtc.net/autocontentapi/apis/content-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/autocontentapi/content-api/revisions/355890b6b4cc/schema)
