---
name: transcribe-audio
description: Transcribe audio with speaker diarization and word-level timestamps.
license: MIT
---

# Skill: transcribe-audio

Transcribe podcasts, meetings, interviews, or any speech audio with
speaker diarization and word-level timestamps.

## When to use

Invoke when the user wants:

- A text transcript of a podcast, meeting, lecture, or interview
- Speaker-separated transcripts ("Speaker 1: …, Speaker 2: …")
- Subtitles / captions for a video

## API

`POST https://api.audiopod.ai/api/v1/transcription/transcribe`

Headers:

- `Authorization: Bearer <access_token>`
- `Content-Type: multipart/form-data`

Body (form-data):

- `file`: audio or video file (up to 2 GB)
- `language`: ISO 639-1 code (or `auto`)
- `diarize`: `true` to enable speaker diarization (up to 10 speakers)
- `output_format`: `srt` | `vtt` | `txt` | `json`

## Response

```json
{ "job_id": 12345, "status": "PENDING" }
```

`job_id` is an integer, unique within the transcription tool.

Poll `GET /api/v1/transcription/jobs/{job_id}` for `COMPLETED`, then fetch
the transcript via `GET /api/v1/transcription/jobs/{job_id}/transcript`.
(Job IDs are per-tool — there is no generic `/api/v1/jobs/{job_id}`
endpoint.)

## Accuracy

99.8% word accuracy on clean studio audio (English); 96–98% on noisy
field recordings after running the `denoise-audio` skill first.
