Retrieve a list of recent transcriptions with basic information for the authenticated user.
This endpoint requires authentication via API key.
Number of recent transcriptions to return (default: 10)
curl -X GET https://api.verbalisai.com/v1/transcript/recent?limit=5 \
-H "Authorization: Bearer YOUR_API_KEY"
[
{
"id": "clx1234567890abcdef",
"name": "audio-file.mp3",
"date": "2 days ago",
"status": "Completed",
"duration": "3:45"
},
{
"id": "clx0987654321fedcba",
"name": "meeting-recording.wav",
"date": "1 week ago",
"status": "Completed",
"duration": "45:12"
}
]
Response Fields
Unique transcription identifier
Original filename extracted from audio URL
Human-readable date when transcription was created
Current status of the transcription
Formatted duration of the audio file (MM:SS)