NAME
OpenAPI::Client::OpenAI::Path::audio-transcriptions - Documentation for the /audio/transcriptions path.
DESCRIPTION
This document describes the API endpoint at /audio/transcriptions
.
PATHS
POST /audio/transcriptions
Transcribes audio into the input language.
Operation ID
createTranscription
$client->createTranscription( ... );
Parameters
Request Body
Content Type: multipart/form-data
Models
ID of the model to use. The options are gpt-4o-transcribe
, gpt-4o-mini-transcribe
, and whisper-1
(which is powered by our open source Whisper V2 model).
whisper-1
gpt-4o-transcribe
gpt-4o-mini-transcribe
Example:
{
"include[]" : [
null
],
"model" : "gpt-4o-transcribe",
"timestamp_granularities[]" : [
null
]
}
Responses
Status Code: 200
OK
Content Types:
application/json
Example (See the OpenAI spec for more detail):
text/event-stream
Example (See the OpenAI spec for more detail):
SEE ALSO
COPYRIGHT AND LICENSE
Copyright (C) 2023-2025 by Nelson Ferraz
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.14.0 or, at your option, any later version of Perl 5 you may have available.