POST
/
speech-to-text
curl --request POST \
  --url http://igboapi.com/api/v2/speech-to-text \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "audioUrl": "<string>"
}'
{
  "transcription": "<string>"
}

Authorizations

X-API-Key
string
header
required

Body

application/json
The audio URL to be transcribed is sent in the request body
audioUrl
string
required

Response

200 - application/json
The transcribed Igbo text of the given input
transcription
string
required