Skip to main content
POST
/
api
/
audios
Get Transcription Result
curl --request POST \
  --url https://easy-peasy.ai/api/audios \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "audio_id": "4bc4e8ee-f29e-4a53-996e-5da955c42927"
}
'
{
  "audio": {
    "uuid": "4bc4e8ee-f29e-4a53-996e-5da955c42927",
    "name": "Team Meeting",
    "content": "",
    "created_at": "2025-01-15T10:30:00.000Z",
    "segments": [],
    "audio_type": "Meeting",
    "language": "English"
  }
}

Authorizations

x-api-key
string
header
required

API key for authentication. Get yours at https://easy-peasy.ai/settings/api

Headers

x-api-key
string
required

Your API key

Body

application/json
audio_id
string
required

The UUID of the audio transcription (returned from Create Transcription)

Example:

"4bc4e8ee-f29e-4a53-996e-5da955c42927"

Response

Audio transcription data

audio
object