Skip to main content
GET
/
plaud
/
files
/
{id}
/
transcript
Get transcript
curl --request GET \
  --url https://{deployment}/api/v1/plaud/files/{id}/transcript \
  --header 'X-API-KEY: <api-key>'
{
  "file_id": "<string>",
  "content": "<unknown>",
  "text": "<string>",
  "format": "<string>"
}

Authorizations

X-API-KEY
string
header
required

Your deployment's API key (MMK_API_KEY). Your Plaud account credentials are stored server-side — you do not send them.

Path Parameters

id
string
required

Plaud recording (file) ID.

Query Parameters

format
enum<string>

Optional. When provided, the response adds text (rendered transcript) and format. Omit to get the raw {file_id, content} shape only.

Available options:
text,
markdown,
srt,
vtt,
json,
plain

Response

Transcript

file_id
string
content
any

Decoded transcript payload (object or array of speaker-labeled segments).

text
string

Rendered transcript — present only when format was requested.

format
string

Echoes the requested format.