Learn how to manage audio files and recordings with Plaud’s API
Plaud’s API provides powerful features for managing audio recordings, allowing you to access, organize, and process your audio files.
Retrieve a list of all files with optional pagination:
Response:
Get detailed information about a specific file:
Create a new file record in the system:
Update an existing file’s metadata:
Remove a file from the system:
Plaud’s API allows you to merge multiple audio files into a single file:
Each file has an ai_status
field that indicates the current processing status:
Status | Value | Description |
---|---|---|
Not processed | 0 | AI processing has not started |
Processing | 1 | AI processing is currently in progress |
Completed | 2 | AI processing has successfully completed |
Error | Negative values | An error occurred during processing |
The results of AI processing are available in the ai_result_list
and ai_data
fields of the file object:
Result Type | Description | Location |
---|---|---|
Transcriptions | Text conversion of speech | ai_data.transcript |
Speaker identification | Who said what | ai_data.speakers |
Summaries | Meeting summary | ai_data.summary |
Action items | Tasks identified | ai_data.action_items |
Topics | Main discussion topics | ai_data.topics |
For secure access to audio files, the API provides presigned URLs:
presigned_url
field when availablePlaud’s API supports the following audio formats:
Format | Extension | Description |
---|---|---|
Opus | .opus | High-quality compressed audio format |
MP3 | .mp3 | Widely supported compressed audio |
WAV | .wav | Uncompressed audio format |
M4A | .m4a | AAC-encoded audio format |