Single file transcription only - Upload via File Path
Endpoint for single file request for API. This endpoint supports MP3, WAV, and FLAC formats.
Audio files must be provided using the audio_path parameter:
- audio_path: <audio_file_url>
Specifies the URL of an audio file available online.
- The audio file must be publicly accessible or require proper authentication if necessary.
- The API will fetch the file from the given URL for transcription.
Request Body
Possible values: [standard, premium, asr]
Possible values: [true, false]
Provide a URL to an audio file.
- 200
- 400
- 401
- 403
- 404
- 500
Records match query criteria.
Schema
- Array [
- Array [
- ]
- ]
utterances object[]
words object[]
{
"utterances": [
{
"index": 0,
"interval": [
0
],
"speaker_id": 0,
"words": [
{
"word": "string",
"end_time": 0,
"confidence": 0,
"am_confidence": 0,
"lm_confidence": 0,
"start_index": 0,
"end_index": 0
}
],
"confidence": 0,
"transcript": "string"
}
]
}
Invalid arguments. Analyze the response error details.
Schema
error object
Example: {"message": "Not Found"}
{
"error": {
"code": 0,
"message": "string",
"errors": [
"string"
]
}
}
Request did not used the correct credentials, check weather the token is valid, or you Authorization header may be malformed.
Schema
error object
Example:{"message":"Not Found"}
{
"error": {
"code": 0,
"message": "string",
"errors": [
"string"
]
}
}
Not authorized to view the request resource. Despite the valid authorization, the authenticated user or token does not have permission to perform this action.
Schema
error object
Example:{"message":"Not Found"}
{
"error": {
"code": 0,
"message": "string",
"errors": [
"string"
]
}
}
The resources were not found.
Schema
error object
Example:{"message":Resources not found}
{
"error": {
"code": 0,
"message": "string",
"errors": [
"string"
]
}
}
Internal Server Error the ELSA API experienced an error.
Schema
error object
Example: {"message":"Internal Error"}
{
"error": {
"code": 0,
"message": "string",
"errors": [
"string"
]
}
}