GET
/
v1
/
transcript
/
recent
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"
  }
]

Retrieve a list of recent transcriptions with basic information for the authenticated user.

This endpoint requires authentication via API key.

limit
integer

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

id
string

Unique transcription identifier

name
string

Original filename extracted from audio URL

date
string

Human-readable date when transcription was created

status
string

Current status of the transcription

duration
string

Formatted duration of the audio file (MM:SS)