Files & Recordings Management
Plaud’s API provides powerful features for managing audio recordings, allowing you to access, organize, and process your audio files.Table of Contents
File Operations
List All Files
Retrieve a list of all files with optional pagination:Get File Details
Get detailed information about a specific file:Create a File
Create a new file record in the system:Update File Information
Update an existing file’s metadata:Delete a File
Remove a file from the system:File Merging
Plaud’s API allows you to merge multiple audio files into a single file:AI Processing
Tracking AI Processing Status
Each file has anai_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 |
Accessing AI Results
The results of AI processing are available in theai_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 |
Presigned URLs
For secure access to audio files, the API provides presigned URLs:- The file details will include a
presigned_url
field when available - This URL provides temporary access to download the audio file
- Presigned URLs typically expire after a short period (usually 15 minutes)
Supported File Formats
Plaud’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 |