SpyBara
Go Premium

python/resources/audio/index.md 2026-06-10 15:48 UTC to 2026-06-12 00:01 UTC

2213 added, 0 removed.

2026
Wed 17 18:02 Tue 16 21:57 Fri 12 00:01 Wed 10 15:48 Tue 9 06:34 Fri 5 06:45 Thu 4 06:52 Tue 2 06:51

Audio

Domain Types

Audio Model

  • Literal["whisper-1", "gpt-4o-transcribe", "gpt-4o-mini-transcribe", 2 more]

    • "whisper-1"

    • "gpt-4o-transcribe"

    • "gpt-4o-mini-transcribe"

    • "gpt-4o-mini-transcribe-2025-12-15"

    • "gpt-4o-transcribe-diarize"

Audio Response Format

  • Literal["json", "text", "srt", 3 more]

    The format of the output, in one of these options: json, text, srt, verbose_json, vtt, or diarized_json. For gpt-4o-transcribe and gpt-4o-mini-transcribe, the only supported format is json. For gpt-4o-transcribe-diarize, the supported formats are json, text, and diarized_json, with diarized_json required to receive speaker annotations.

    • "json"

    • "text"

    • "srt"

    • "verbose_json"

    • "vtt"

    • "diarized_json"

Transcriptions

Create transcription

audio.transcriptions.create(TranscriptionCreateParams**kwargs) -> TranscriptionCreateResponse

post /audio/transcriptions

Transcribes audio into the input language.

Returns a transcription object in json, diarized_json, or verbose_json format, or a stream of transcript events.

Parameters

  • file: FileTypes

    The audio file object (not file name) to transcribe, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm.

  • model: Union[str, AudioModel]

    ID of the model to use. The options are gpt-4o-transcribe, gpt-4o-mini-transcribe, gpt-4o-mini-transcribe-2025-12-15, whisper-1 (which is powered by our open source Whisper V2 model), and gpt-4o-transcribe-diarize.

    • str

    • Literal["whisper-1", "gpt-4o-transcribe", "gpt-4o-mini-transcribe", 2 more]

      • "whisper-1"

      • "gpt-4o-transcribe"

      • "gpt-4o-mini-transcribe"

      • "gpt-4o-mini-transcribe-2025-12-15"

      • "gpt-4o-transcribe-diarize"

  • chunking_strategy: Optional[ChunkingStrategy]

    Controls how the audio is cut into chunks. When set to "auto", the server first normalizes loudness and then uses voice activity detection (VAD) to choose boundaries. server_vad object can be provided to tweak VAD detection parameters manually. If unset, the audio is transcribed as a single block. Required when using gpt-4o-transcribe-diarize for inputs longer than 30 seconds.

    • Literal["auto"]

      Automatically set chunking parameters based on the audio. Must be set to "auto".

      • "auto"
    • class ChunkingStrategyVadConfig: …

      • type: Literal["server_vad"]

        Must be set to server_vad to enable manual chunking using server side VAD.

        • "server_vad"
      • prefix_padding_ms: Optional[int]

        Amount of audio to include before the VAD detected speech (in milliseconds).

      • silence_duration_ms: Optional[int]

        Duration of silence to detect speech stop (in milliseconds). With shorter values the model will respond more quickly, but may jump in on short pauses from the user.

      • threshold: Optional[float]

        Sensitivity threshold (0.0 to 1.0) for voice activity detection. A higher threshold will require louder audio to activate the model, and thus might perform better in noisy environments.

  • include: Optional[List[TranscriptionInclude]]

    Additional information to include in the transcription response. logprobs will return the log probabilities of the tokens in the response to understand the model's confidence in the transcription. logprobs only works with response_format set to json and only with the models gpt-4o-transcribe, gpt-4o-mini-transcribe, and gpt-4o-mini-transcribe-2025-12-15. This field is not supported when using gpt-4o-transcribe-diarize.

    • "logprobs"
  • known_speaker_names: Optional[Sequence[str]]

    Optional list of speaker names that correspond to the audio samples provided in known_speaker_references[]. Each entry should be a short identifier (for example customer or agent). Up to 4 speakers are supported.

  • known_speaker_references: Optional[Sequence[str]]

    Optional list of audio samples (as data URLs) that contain known speaker references matching known_speaker_names[]. Each sample must be between 2 and 10 seconds, and can use any of the same input audio formats supported by file.

  • language: Optional[str]

    The language of the input audio. Supplying the input language in ISO-639-1 (e.g. en) format will improve accuracy and latency.

  • prompt: Optional[str]

    An optional text to guide the model's style or continue a previous audio segment. The prompt should match the audio language. This field is not supported when using gpt-4o-transcribe-diarize.

  • response_format: Optional[AudioResponseFormat]

    The format of the output, in one of these options: json, text, srt, verbose_json, vtt, or diarized_json. For gpt-4o-transcribe and gpt-4o-mini-transcribe, the only supported format is json. For gpt-4o-transcribe-diarize, the supported formats are json, text, and diarized_json, with diarized_json required to receive speaker annotations.

    • "json"

    • "text"

    • "srt"

    • "verbose_json"

    • "vtt"

    • "diarized_json"

  • stream: Optional[Literal[false]]

    If set to true, the model response data will be streamed to the client as it is generated using server-sent events. See the Streaming section of the Speech-to-Text guide for more information.

    Note: Streaming is not supported for the whisper-1 model and will be ignored.

    • false
  • temperature: Optional[float]

    The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use log probability to automatically increase the temperature until certain thresholds are hit.

  • timestamp_granularities: Optional[List[Literal["word", "segment"]]]

    The timestamp granularities to populate for this transcription. response_format must be set verbose_json to use timestamp granularities. Either or both of these options are supported: word, or segment. Note: There is no additional latency for segment timestamps, but generating word timestamps incurs additional latency. This option is not available for gpt-4o-transcribe-diarize.

    • "word"

    • "segment"

Returns

  • TranscriptionCreateResponse

    Represents a transcription response returned by model, based on the provided input.

    • class Transcription: …

      Represents a transcription response returned by model, based on the provided input.

      • text: str

        The transcribed text.

      • logprobs: Optional[List[Logprob]]

        The log probabilities of the tokens in the transcription. Only returned with the models gpt-4o-transcribe and gpt-4o-mini-transcribe if logprobs is added to the include array.

        • token: Optional[str]

          The token in the transcription.

        • bytes: Optional[List[float]]

          The bytes of the token.

        • logprob: Optional[float]

          The log probability of the token.

      • usage: Optional[Usage]

        Token usage statistics for the request.

        • class UsageTokens: …

          Usage statistics for models billed by token usage.

          • input_tokens: int

            Number of input tokens billed for this request.

          • output_tokens: int

            Number of output tokens generated.

          • total_tokens: int

            Total number of tokens used (input + output).

          • type: Literal["tokens"]

            The type of the usage object. Always tokens for this variant.

            • "tokens"
          • input_token_details: Optional[UsageTokensInputTokenDetails]

            Details about the input tokens billed for this request.

            • audio_tokens: Optional[int]

              Number of audio tokens billed for this request.

            • text_tokens: Optional[int]

              Number of text tokens billed for this request.

        • class UsageDuration: …

          Usage statistics for models billed by audio input duration.

          • seconds: float

            Duration of the input audio in seconds.

          • type: Literal["duration"]

            The type of the usage object. Always duration for this variant.

            • "duration"
    • class TranscriptionDiarized: …

      Represents a diarized transcription response returned by the model, including the combined transcript and speaker-segment annotations.

      • duration: float

        Duration of the input audio in seconds.

      • segments: List[TranscriptionDiarizedSegment]

        Segments of the transcript annotated with timestamps and speaker labels.

        • id: str

          Unique identifier for the segment.

        • end: float

          End timestamp of the segment in seconds.

        • speaker: str

          Speaker label for this segment. When known speakers are provided, the label matches known_speaker_names[]. Otherwise speakers are labeled sequentially using capital letters (A, B, ...).

        • start: float

          Start timestamp of the segment in seconds.

        • text: str

          Transcript text for this segment.

        • type: Literal["transcript.text.segment"]

          The type of the segment. Always transcript.text.segment.

          • "transcript.text.segment"
      • task: Literal["transcribe"]

        The type of task that was run. Always transcribe.

        • "transcribe"
      • text: str

        The concatenated transcript text for the entire audio input.

      • usage: Optional[Usage]

        Token or duration usage statistics for the request.

        • class UsageTokens: …

          Usage statistics for models billed by token usage.

          • input_tokens: int

            Number of input tokens billed for this request.

          • output_tokens: int

            Number of output tokens generated.

          • total_tokens: int

            Total number of tokens used (input + output).

          • type: Literal["tokens"]

            The type of the usage object. Always tokens for this variant.

            • "tokens"
          • input_token_details: Optional[UsageTokensInputTokenDetails]

            Details about the input tokens billed for this request.

            • audio_tokens: Optional[int]

              Number of audio tokens billed for this request.

            • text_tokens: Optional[int]

              Number of text tokens billed for this request.

        • class UsageDuration: …

          Usage statistics for models billed by audio input duration.

          • seconds: float

            Duration of the input audio in seconds.

          • type: Literal["duration"]

            The type of the usage object. Always duration for this variant.

            • "duration"
    • class TranscriptionVerbose: …

      Represents a verbose json transcription response returned by model, based on the provided input.

      • duration: float

        The duration of the input audio.

      • language: str

        The language of the input audio.

      • text: str

        The transcribed text.

      • segments: Optional[List[TranscriptionSegment]]

        Segments of the transcribed text and their corresponding details.

        • id: int

          Unique identifier of the segment.

        • avg_logprob: float

          Average logprob of the segment. If the value is lower than -1, consider the logprobs failed.

        • compression_ratio: float

          Compression ratio of the segment. If the value is greater than 2.4, consider the compression failed.

        • end: float

          End time of the segment in seconds.

        • no_speech_prob: float

          Probability of no speech in the segment. If the value is higher than 1.0 and the avg_logprob is below -1, consider this segment silent.

        • seek: int

          Seek offset of the segment.

        • start: float

          Start time of the segment in seconds.

        • temperature: float

          Temperature parameter used for generating the segment.

        • text: str

          Text content of the segment.

        • tokens: List[int]

          Array of token IDs for the text content.

      • usage: Optional[Usage]

        Usage statistics for models billed by audio input duration.

        • seconds: float

          Duration of the input audio in seconds.

        • type: Literal["duration"]

          The type of the usage object. Always duration for this variant.

          • "duration"
      • words: Optional[List[TranscriptionWord]]

        Extracted words and their corresponding timestamps.

        • end: float

          End time of the word in seconds.

        • start: float

          Start time of the word in seconds.

        • word: str

          The text content of the word.

Example

import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ.get("OPENAI_API_KEY"),  # This is the default and can be omitted
)
for transcription in client.audio.transcriptions.create(
    file=b"Example data",
    model="gpt-4o-transcribe",
):
  print(transcription)

Response

{
  "text": "text",
  "logprobs": [
    {
      "token": "token",
      "bytes": [
        0
      ],
      "logprob": 0
    }
  ],
  "usage": {
    "input_tokens": 0,
    "output_tokens": 0,
    "total_tokens": 0,
    "type": "tokens",
    "input_token_details": {
      "audio_tokens": 0,
      "text_tokens": 0
    }
  }
}

Example

from openai import OpenAI
client = OpenAI()

audio_file = open("speech.mp3", "rb")
transcript = client.audio.transcriptions.create(
  model="gpt-4o-transcribe",
  file=audio_file
)

Response

{
  "text": "Imagine the wildest idea that you've ever had, and you're curious about how it might scale to something that's a 100, a 1,000 times bigger. This is a place where you can get to do that.",
  "usage": {
    "type": "tokens",
    "input_tokens": 14,
    "input_token_details": {
      "text_tokens": 0,
      "audio_tokens": 14
    },
    "output_tokens": 45,
    "total_tokens": 59
  }
}

Diarization

import base64
from openai import OpenAI

client = OpenAI()

def to_data_url(path: str) -> str:
  with open(path, "rb") as fh:
    return "data:audio/wav;base64," + base64.b64encode(fh.read()).decode("utf-8")

with open("meeting.wav", "rb") as audio_file:
  transcript = client.audio.transcriptions.create(
    model="gpt-4o-transcribe-diarize",
    file=audio_file,
    response_format="diarized_json",
    chunking_strategy="auto",
    extra_body={
      "known_speaker_names": ["agent"],
      "known_speaker_references": [to_data_url("agent.wav")],
    },
  )

print(transcript.segments)

Response

{
  "task": "transcribe",
  "duration": 27.4,
  "text": "Agent: Thanks for calling OpenAI support.\nA: Hi, I'm trying to enable diarization.\nAgent: Happy to walk you through the steps.",
  "segments": [
    {
      "type": "transcript.text.segment",
      "id": "seg_001",
      "start": 0.0,
      "end": 4.7,
      "text": "Thanks for calling OpenAI support.",
      "speaker": "agent"
    },
    {
      "type": "transcript.text.segment",
      "id": "seg_002",
      "start": 4.7,
      "end": 11.8,
      "text": "Hi, I'm trying to enable diarization.",
      "speaker": "A"
    },
    {
      "type": "transcript.text.segment",
      "id": "seg_003",
      "start": 12.1,
      "end": 18.5,
      "text": "Happy to walk you through the steps.",
      "speaker": "agent"
    }
  ],
  "usage": {
    "type": "duration",
    "seconds": 27
  }
}

Streaming

from openai import OpenAI
client = OpenAI()

audio_file = open("speech.mp3", "rb")
stream = client.audio.transcriptions.create(
  file=audio_file,
  model="gpt-4o-mini-transcribe",
  stream=True
)

for event in stream:
  print(event)

Response

data: {"type":"transcript.text.delta","delta":"I","logprobs":[{"token":"I","logprob":-0.00007588794,"bytes":[73]}]}

data: {"type":"transcript.text.delta","delta":" see","logprobs":[{"token":" see","logprob":-3.1281633e-7,"bytes":[32,115,101,101]}]}

data: {"type":"transcript.text.delta","delta":" skies","logprobs":[{"token":" skies","logprob":-2.3392786e-6,"bytes":[32,115,107,105,101,115]}]}

data: {"type":"transcript.text.delta","delta":" of","logprobs":[{"token":" of","logprob":-3.1281633e-7,"bytes":[32,111,102]}]}

data: {"type":"transcript.text.delta","delta":" blue","logprobs":[{"token":" blue","logprob":-1.0280384e-6,"bytes":[32,98,108,117,101]}]}

data: {"type":"transcript.text.delta","delta":" and","logprobs":[{"token":" and","logprob":-0.0005108566,"bytes":[32,97,110,100]}]}

data: {"type":"transcript.text.delta","delta":" clouds","logprobs":[{"token":" clouds","logprob":-1.9361265e-7,"bytes":[32,99,108,111,117,100,115]}]}

data: {"type":"transcript.text.delta","delta":" of","logprobs":[{"token":" of","logprob":-1.9361265e-7,"bytes":[32,111,102]}]}

data: {"type":"transcript.text.delta","delta":" white","logprobs":[{"token":" white","logprob":-7.89631e-7,"bytes":[32,119,104,105,116,101]}]}

data: {"type":"transcript.text.delta","delta":",","logprobs":[{"token":",","logprob":-0.0014890312,"bytes":[44]}]}

data: {"type":"transcript.text.delta","delta":" the","logprobs":[{"token":" the","logprob":-0.0110956915,"bytes":[32,116,104,101]}]}

data: {"type":"transcript.text.delta","delta":" bright","logprobs":[{"token":" bright","logprob":0.0,"bytes":[32,98,114,105,103,104,116]}]}

data: {"type":"transcript.text.delta","delta":" blessed","logprobs":[{"token":" blessed","logprob":-0.000045848617,"bytes":[32,98,108,101,115,115,101,100]}]}

data: {"type":"transcript.text.delta","delta":" days","logprobs":[{"token":" days","logprob":-0.000010802739,"bytes":[32,100,97,121,115]}]}

data: {"type":"transcript.text.delta","delta":",","logprobs":[{"token":",","logprob":-0.00001700133,"bytes":[44]}]}

data: {"type":"transcript.text.delta","delta":" the","logprobs":[{"token":" the","logprob":-0.0000118755715,"bytes":[32,116,104,101]}]}

data: {"type":"transcript.text.delta","delta":" dark","logprobs":[{"token":" dark","logprob":-5.5122365e-7,"bytes":[32,100,97,114,107]}]}

data: {"type":"transcript.text.delta","delta":" sacred","logprobs":[{"token":" sacred","logprob":-5.4385737e-6,"bytes":[32,115,97,99,114,101,100]}]}

data: {"type":"transcript.text.delta","delta":" nights","logprobs":[{"token":" nights","logprob":-4.00813e-6,"bytes":[32,110,105,103,104,116,115]}]}

data: {"type":"transcript.text.delta","delta":",","logprobs":[{"token":",","logprob":-0.0036910512,"bytes":[44]}]}

data: {"type":"transcript.text.delta","delta":" and","logprobs":[{"token":" and","logprob":-0.0031903093,"bytes":[32,97,110,100]}]}

data: {"type":"transcript.text.delta","delta":" I","logprobs":[{"token":" I","logprob":-1.504853e-6,"bytes":[32,73]}]}

data: {"type":"transcript.text.delta","delta":" think","logprobs":[{"token":" think","logprob":-4.3202e-7,"bytes":[32,116,104,105,110,107]}]}

data: {"type":"transcript.text.delta","delta":" to","logprobs":[{"token":" to","logprob":-1.9361265e-7,"bytes":[32,116,111]}]}

data: {"type":"transcript.text.delta","delta":" myself","logprobs":[{"token":" myself","logprob":-1.7432603e-6,"bytes":[32,109,121,115,101,108,102]}]}

data: {"type":"transcript.text.delta","delta":",","logprobs":[{"token":",","logprob":-0.29254505,"bytes":[44]}]}

data: {"type":"transcript.text.delta","delta":" what","logprobs":[{"token":" what","logprob":-0.016815351,"bytes":[32,119,104,97,116]}]}

data: {"type":"transcript.text.delta","delta":" a","logprobs":[{"token":" a","logprob":-3.1281633e-7,"bytes":[32,97]}]}

data: {"type":"transcript.text.delta","delta":" wonderful","logprobs":[{"token":" wonderful","logprob":-2.1008714e-6,"bytes":[32,119,111,110,100,101,114,102,117,108]}]}

data: {"type":"transcript.text.delta","delta":" world","logprobs":[{"token":" world","logprob":-8.180258e-6,"bytes":[32,119,111,114,108,100]}]}

data: {"type":"transcript.text.delta","delta":".","logprobs":[{"token":".","logprob":-0.014231676,"bytes":[46]}]}

data: {"type":"transcript.text.done","text":"I see skies of blue and clouds of white, the bright blessed days, the dark sacred nights, and I think to myself, what a wonderful world.","logprobs":[{"token":"I","logprob":-0.00007588794,"bytes":[73]},{"token":" see","logprob":-3.1281633e-7,"bytes":[32,115,101,101]},{"token":" skies","logprob":-2.3392786e-6,"bytes":[32,115,107,105,101,115]},{"token":" of","logprob":-3.1281633e-7,"bytes":[32,111,102]},{"token":" blue","logprob":-1.0280384e-6,"bytes":[32,98,108,117,101]},{"token":" and","logprob":-0.0005108566,"bytes":[32,97,110,100]},{"token":" clouds","logprob":-1.9361265e-7,"bytes":[32,99,108,111,117,100,115]},{"token":" of","logprob":-1.9361265e-7,"bytes":[32,111,102]},{"token":" white","logprob":-7.89631e-7,"bytes":[32,119,104,105,116,101]},{"token":",","logprob":-0.0014890312,"bytes":[44]},{"token":" the","logprob":-0.0110956915,"bytes":[32,116,104,101]},{"token":" bright","logprob":0.0,"bytes":[32,98,114,105,103,104,116]},{"token":" blessed","logprob":-0.000045848617,"bytes":[32,98,108,101,115,115,101,100]},{"token":" days","logprob":-0.000010802739,"bytes":[32,100,97,121,115]},{"token":",","logprob":-0.00001700133,"bytes":[44]},{"token":" the","logprob":-0.0000118755715,"bytes":[32,116,104,101]},{"token":" dark","logprob":-5.5122365e-7,"bytes":[32,100,97,114,107]},{"token":" sacred","logprob":-5.4385737e-6,"bytes":[32,115,97,99,114,101,100]},{"token":" nights","logprob":-4.00813e-6,"bytes":[32,110,105,103,104,116,115]},{"token":",","logprob":-0.0036910512,"bytes":[44]},{"token":" and","logprob":-0.0031903093,"bytes":[32,97,110,100]},{"token":" I","logprob":-1.504853e-6,"bytes":[32,73]},{"token":" think","logprob":-4.3202e-7,"bytes":[32,116,104,105,110,107]},{"token":" to","logprob":-1.9361265e-7,"bytes":[32,116,111]},{"token":" myself","logprob":-1.7432603e-6,"bytes":[32,109,121,115,101,108,102]},{"token":",","logprob":-0.29254505,"bytes":[44]},{"token":" what","logprob":-0.016815351,"bytes":[32,119,104,97,116]},{"token":" a","logprob":-3.1281633e-7,"bytes":[32,97]},{"token":" wonderful","logprob":-2.1008714e-6,"bytes":[32,119,111,110,100,101,114,102,117,108]},{"token":" world","logprob":-8.180258e-6,"bytes":[32,119,111,114,108,100]},{"token":".","logprob":-0.014231676,"bytes":[46]}],"usage":{"input_tokens":14,"input_token_details":{"text_tokens":0,"audio_tokens":14},"output_tokens":45,"total_tokens":59}}

Logprobs

from openai import OpenAI
client = OpenAI()

audio_file = open("speech.mp3", "rb")
transcript = client.audio.transcriptions.create(
  file=audio_file,
  model="gpt-4o-transcribe",
  response_format="json",
  include=["logprobs"]
)

print(transcript)

Response

{
  "text": "Hey, my knee is hurting and I want to see the doctor tomorrow ideally.",
  "logprobs": [
    { "token": "Hey", "logprob": -1.0415299, "bytes": [72, 101, 121] },
    { "token": ",", "logprob": -9.805982e-5, "bytes": [44] },
    { "token": " my", "logprob": -0.00229799, "bytes": [32, 109, 121] },
    {
      "token": " knee",
      "logprob": -4.7159858e-5,
      "bytes": [32, 107, 110, 101, 101]
    },
    { "token": " is", "logprob": -0.043909557, "bytes": [32, 105, 115] },
    {
      "token": " hurting",
      "logprob": -1.1041146e-5,
      "bytes": [32, 104, 117, 114, 116, 105, 110, 103]
    },
    { "token": " and", "logprob": -0.011076359, "bytes": [32, 97, 110, 100] },
    { "token": " I", "logprob": -5.3193703e-6, "bytes": [32, 73] },
    {
      "token": " want",
      "logprob": -0.0017156356,
      "bytes": [32, 119, 97, 110, 116]
    },
    { "token": " to", "logprob": -7.89631e-7, "bytes": [32, 116, 111] },
    { "token": " see", "logprob": -5.5122365e-7, "bytes": [32, 115, 101, 101] },
    { "token": " the", "logprob": -0.0040786397, "bytes": [32, 116, 104, 101] },
    {
      "token": " doctor",
      "logprob": -2.3392786e-6,
      "bytes": [32, 100, 111, 99, 116, 111, 114]
    },
    {
      "token": " tomorrow",
      "logprob": -7.89631e-7,
      "bytes": [32, 116, 111, 109, 111, 114, 114, 111, 119]
    },
    {
      "token": " ideally",
      "logprob": -0.5800861,
      "bytes": [32, 105, 100, 101, 97, 108, 108, 121]
    },
    { "token": ".", "logprob": -0.00011093382, "bytes": [46] }
  ],
  "usage": {
    "type": "tokens",
    "input_tokens": 14,
    "input_token_details": {
      "text_tokens": 0,
      "audio_tokens": 14
    },
    "output_tokens": 45,
    "total_tokens": 59
  }
}

Word timestamps

from openai import OpenAI
client = OpenAI()

audio_file = open("speech.mp3", "rb")
transcript = client.audio.transcriptions.create(
  file=audio_file,
  model="whisper-1",
  response_format="verbose_json",
  timestamp_granularities=["word"]
)

print(transcript.words)

Response

{
  "task": "transcribe",
  "language": "english",
  "duration": 8.470000267028809,
  "text": "The beach was a popular spot on a hot summer day. People were swimming in the ocean, building sandcastles, and playing beach volleyball.",
  "words": [
    {
      "word": "The",
      "start": 0.0,
      "end": 0.23999999463558197
    },
    ...
    {
      "word": "volleyball",
      "start": 7.400000095367432,
      "end": 7.900000095367432
    }
  ],
  "usage": {
    "type": "duration",
    "seconds": 9
  }
}

Segment timestamps

from openai import OpenAI
client = OpenAI()

audio_file = open("speech.mp3", "rb")
transcript = client.audio.transcriptions.create(
  file=audio_file,
  model="whisper-1",
  response_format="verbose_json",
  timestamp_granularities=["segment"]
)

print(transcript.words)

Response

{
  "task": "transcribe",
  "language": "english",
  "duration": 8.470000267028809,
  "text": "The beach was a popular spot on a hot summer day. People were swimming in the ocean, building sandcastles, and playing beach volleyball.",
  "segments": [
    {
      "id": 0,
      "seek": 0,
      "start": 0.0,
      "end": 3.319999933242798,
      "text": " The beach was a popular spot on a hot summer day.",
      "tokens": [
        50364, 440, 7534, 390, 257, 3743, 4008, 322, 257, 2368, 4266, 786, 13, 50530
      ],
      "temperature": 0.0,
      "avg_logprob": -0.2860786020755768,
      "compression_ratio": 1.2363636493682861,
      "no_speech_prob": 0.00985979475080967
    },
    ...
  ],
  "usage": {
    "type": "duration",
    "seconds": 9
  }
}

Domain Types

Transcription

  • class Transcription: …

    Represents a transcription response returned by model, based on the provided input.

    • text: str

      The transcribed text.

    • logprobs: Optional[List[Logprob]]

      The log probabilities of the tokens in the transcription. Only returned with the models gpt-4o-transcribe and gpt-4o-mini-transcribe if logprobs is added to the include array.

      • token: Optional[str]

        The token in the transcription.

      • bytes: Optional[List[float]]

        The bytes of the token.

      • logprob: Optional[float]

        The log probability of the token.

    • usage: Optional[Usage]

      Token usage statistics for the request.

      • class UsageTokens: …

        Usage statistics for models billed by token usage.

        • input_tokens: int

          Number of input tokens billed for this request.

        • output_tokens: int

          Number of output tokens generated.

        • total_tokens: int

          Total number of tokens used (input + output).

        • type: Literal["tokens"]

          The type of the usage object. Always tokens for this variant.

          • "tokens"
        • input_token_details: Optional[UsageTokensInputTokenDetails]

          Details about the input tokens billed for this request.

          • audio_tokens: Optional[int]

            Number of audio tokens billed for this request.

          • text_tokens: Optional[int]

            Number of text tokens billed for this request.

      • class UsageDuration: …

        Usage statistics for models billed by audio input duration.

        • seconds: float

          Duration of the input audio in seconds.

        • type: Literal["duration"]

          The type of the usage object. Always duration for this variant.

          • "duration"

Transcription Diarized

  • class TranscriptionDiarized: …

    Represents a diarized transcription response returned by the model, including the combined transcript and speaker-segment annotations.

    • duration: float

      Duration of the input audio in seconds.

    • segments: List[TranscriptionDiarizedSegment]

      Segments of the transcript annotated with timestamps and speaker labels.

      • id: str

        Unique identifier for the segment.

      • end: float

        End timestamp of the segment in seconds.

      • speaker: str

        Speaker label for this segment. When known speakers are provided, the label matches known_speaker_names[]. Otherwise speakers are labeled sequentially using capital letters (A, B, ...).

      • start: float

        Start timestamp of the segment in seconds.

      • text: str

        Transcript text for this segment.

      • type: Literal["transcript.text.segment"]

        The type of the segment. Always transcript.text.segment.

        • "transcript.text.segment"
    • task: Literal["transcribe"]

      The type of task that was run. Always transcribe.

      • "transcribe"
    • text: str

      The concatenated transcript text for the entire audio input.

    • usage: Optional[Usage]

      Token or duration usage statistics for the request.

      • class UsageTokens: …

        Usage statistics for models billed by token usage.

        • input_tokens: int

          Number of input tokens billed for this request.

        • output_tokens: int

          Number of output tokens generated.

        • total_tokens: int

          Total number of tokens used (input + output).

        • type: Literal["tokens"]

          The type of the usage object. Always tokens for this variant.

          • "tokens"
        • input_token_details: Optional[UsageTokensInputTokenDetails]

          Details about the input tokens billed for this request.

          • audio_tokens: Optional[int]

            Number of audio tokens billed for this request.

          • text_tokens: Optional[int]

            Number of text tokens billed for this request.

      • class UsageDuration: …

        Usage statistics for models billed by audio input duration.

        • seconds: float

          Duration of the input audio in seconds.

        • type: Literal["duration"]

          The type of the usage object. Always duration for this variant.

          • "duration"

Transcription Diarized Segment

  • class TranscriptionDiarizedSegment: …

    A segment of diarized transcript text with speaker metadata.

    • id: str

      Unique identifier for the segment.

    • end: float

      End timestamp of the segment in seconds.

    • speaker: str

      Speaker label for this segment. When known speakers are provided, the label matches known_speaker_names[]. Otherwise speakers are labeled sequentially using capital letters (A, B, ...).

    • start: float

      Start timestamp of the segment in seconds.

    • text: str

      Transcript text for this segment.

    • type: Literal["transcript.text.segment"]

      The type of the segment. Always transcript.text.segment.

      • "transcript.text.segment"

Transcription Include

  • Literal["logprobs"]

    • "logprobs"

Transcription Segment

  • class TranscriptionSegment: …

    • id: int

      Unique identifier of the segment.

    • avg_logprob: float

      Average logprob of the segment. If the value is lower than -1, consider the logprobs failed.

    • compression_ratio: float

      Compression ratio of the segment. If the value is greater than 2.4, consider the compression failed.

    • end: float

      End time of the segment in seconds.

    • no_speech_prob: float

      Probability of no speech in the segment. If the value is higher than 1.0 and the avg_logprob is below -1, consider this segment silent.

    • seek: int

      Seek offset of the segment.

    • start: float

      Start time of the segment in seconds.

    • temperature: float

      Temperature parameter used for generating the segment.

    • text: str

      Text content of the segment.

    • tokens: List[int]

      Array of token IDs for the text content.

Transcription Stream Event

  • TranscriptionStreamEvent

    Emitted when a diarized transcription returns a completed segment with speaker information. Only emitted when you create a transcription with stream set to true and response_format set to diarized_json.

    • class TranscriptionTextSegmentEvent: …

      Emitted when a diarized transcription returns a completed segment with speaker information. Only emitted when you create a transcription with stream set to true and response_format set to diarized_json.

      • id: str

        Unique identifier for the segment.

      • end: float

        End timestamp of the segment in seconds.

      • speaker: str

        Speaker label for this segment.

      • start: float

        Start timestamp of the segment in seconds.

      • text: str

        Transcript text for this segment.

      • type: Literal["transcript.text.segment"]

        The type of the event. Always transcript.text.segment.

        • "transcript.text.segment"
    • class TranscriptionTextDeltaEvent: …

      Emitted when there is an additional text delta. This is also the first event emitted when the transcription starts. Only emitted when you create a transcription with the Stream parameter set to true.

      • delta: str

        The text delta that was additionally transcribed.

      • type: Literal["transcript.text.delta"]

        The type of the event. Always transcript.text.delta.

        • "transcript.text.delta"
      • logprobs: Optional[List[Logprob]]

        The log probabilities of the delta. Only included if you create a transcription with the include[] parameter set to logprobs.

        • token: Optional[str]

          The token that was used to generate the log probability.

        • bytes: Optional[List[int]]

          The bytes that were used to generate the log probability.

        • logprob: Optional[float]

          The log probability of the token.

      • segment_id: Optional[str]

        Identifier of the diarized segment that this delta belongs to. Only present when using gpt-4o-transcribe-diarize.

    • class TranscriptionTextDoneEvent: …

      Emitted when the transcription is complete. Contains the complete transcription text. Only emitted when you create a transcription with the Stream parameter set to true.

      • text: str

        The text that was transcribed.

      • type: Literal["transcript.text.done"]

        The type of the event. Always transcript.text.done.

        • "transcript.text.done"
      • logprobs: Optional[List[Logprob]]

        The log probabilities of the individual tokens in the transcription. Only included if you create a transcription with the include[] parameter set to logprobs.

        • token: Optional[str]

          The token that was used to generate the log probability.

        • bytes: Optional[List[int]]

          The bytes that were used to generate the log probability.

        • logprob: Optional[float]

          The log probability of the token.

      • usage: Optional[Usage]

        Usage statistics for models billed by token usage.

        • input_tokens: int

          Number of input tokens billed for this request.

        • output_tokens: int

          Number of output tokens generated.

        • total_tokens: int

          Total number of tokens used (input + output).

        • type: Literal["tokens"]

          The type of the usage object. Always tokens for this variant.

          • "tokens"
        • input_token_details: Optional[UsageInputTokenDetails]

          Details about the input tokens billed for this request.

          • audio_tokens: Optional[int]

            Number of audio tokens billed for this request.

          • text_tokens: Optional[int]

            Number of text tokens billed for this request.

Transcription Text Delta Event

  • class TranscriptionTextDeltaEvent: …

    Emitted when there is an additional text delta. This is also the first event emitted when the transcription starts. Only emitted when you create a transcription with the Stream parameter set to true.

    • delta: str

      The text delta that was additionally transcribed.

    • type: Literal["transcript.text.delta"]

      The type of the event. Always transcript.text.delta.

      • "transcript.text.delta"
    • logprobs: Optional[List[Logprob]]

      The log probabilities of the delta. Only included if you create a transcription with the include[] parameter set to logprobs.

      • token: Optional[str]

        The token that was used to generate the log probability.

      • bytes: Optional[List[int]]

        The bytes that were used to generate the log probability.

      • logprob: Optional[float]

        The log probability of the token.

    • segment_id: Optional[str]

      Identifier of the diarized segment that this delta belongs to. Only present when using gpt-4o-transcribe-diarize.

Transcription Text Done Event

  • class TranscriptionTextDoneEvent: …

    Emitted when the transcription is complete. Contains the complete transcription text. Only emitted when you create a transcription with the Stream parameter set to true.

    • text: str

      The text that was transcribed.

    • type: Literal["transcript.text.done"]

      The type of the event. Always transcript.text.done.

      • "transcript.text.done"
    • logprobs: Optional[List[Logprob]]

      The log probabilities of the individual tokens in the transcription. Only included if you create a transcription with the include[] parameter set to logprobs.

      • token: Optional[str]

        The token that was used to generate the log probability.

      • bytes: Optional[List[int]]

        The bytes that were used to generate the log probability.

      • logprob: Optional[float]

        The log probability of the token.

    • usage: Optional[Usage]

      Usage statistics for models billed by token usage.

      • input_tokens: int

        Number of input tokens billed for this request.

      • output_tokens: int

        Number of output tokens generated.

      • total_tokens: int

        Total number of tokens used (input + output).

      • type: Literal["tokens"]

        The type of the usage object. Always tokens for this variant.

        • "tokens"
      • input_token_details: Optional[UsageInputTokenDetails]

        Details about the input tokens billed for this request.

        • audio_tokens: Optional[int]

          Number of audio tokens billed for this request.

        • text_tokens: Optional[int]

          Number of text tokens billed for this request.

Transcription Text Segment Event

  • class TranscriptionTextSegmentEvent: …

    Emitted when a diarized transcription returns a completed segment with speaker information. Only emitted when you create a transcription with stream set to true and response_format set to diarized_json.

    • id: str

      Unique identifier for the segment.

    • end: float

      End timestamp of the segment in seconds.

    • speaker: str

      Speaker label for this segment.

    • start: float

      Start timestamp of the segment in seconds.

    • text: str

      Transcript text for this segment.

    • type: Literal["transcript.text.segment"]

      The type of the event. Always transcript.text.segment.

      • "transcript.text.segment"

Transcription Verbose

  • class TranscriptionVerbose: …

    Represents a verbose json transcription response returned by model, based on the provided input.

    • duration: float

      The duration of the input audio.

    • language: str

      The language of the input audio.

    • text: str

      The transcribed text.

    • segments: Optional[List[TranscriptionSegment]]

      Segments of the transcribed text and their corresponding details.

      • id: int

        Unique identifier of the segment.

      • avg_logprob: float

        Average logprob of the segment. If the value is lower than -1, consider the logprobs failed.

      • compression_ratio: float

        Compression ratio of the segment. If the value is greater than 2.4, consider the compression failed.

      • end: float

        End time of the segment in seconds.

      • no_speech_prob: float

        Probability of no speech in the segment. If the value is higher than 1.0 and the avg_logprob is below -1, consider this segment silent.

      • seek: int

        Seek offset of the segment.

      • start: float

        Start time of the segment in seconds.

      • temperature: float

        Temperature parameter used for generating the segment.

      • text: str

        Text content of the segment.

      • tokens: List[int]

        Array of token IDs for the text content.

    • usage: Optional[Usage]

      Usage statistics for models billed by audio input duration.

      • seconds: float

        Duration of the input audio in seconds.

      • type: Literal["duration"]

        The type of the usage object. Always duration for this variant.

        • "duration"
    • words: Optional[List[TranscriptionWord]]

      Extracted words and their corresponding timestamps.

      • end: float

        End time of the word in seconds.

      • start: float

        Start time of the word in seconds.

      • word: str

        The text content of the word.

Transcription Word

  • class TranscriptionWord: …

    • end: float

      End time of the word in seconds.

    • start: float

      Start time of the word in seconds.

    • word: str

      The text content of the word.

Transcription Create Response

  • TranscriptionCreateResponse

    Represents a transcription response returned by model, based on the provided input.

    • class Transcription: …

      Represents a transcription response returned by model, based on the provided input.

      • text: str

        The transcribed text.

      • logprobs: Optional[List[Logprob]]

        The log probabilities of the tokens in the transcription. Only returned with the models gpt-4o-transcribe and gpt-4o-mini-transcribe if logprobs is added to the include array.

        • token: Optional[str]

          The token in the transcription.

        • bytes: Optional[List[float]]

          The bytes of the token.

        • logprob: Optional[float]

          The log probability of the token.

      • usage: Optional[Usage]

        Token usage statistics for the request.

        • class UsageTokens: …

          Usage statistics for models billed by token usage.

          • input_tokens: int

            Number of input tokens billed for this request.

          • output_tokens: int

            Number of output tokens generated.

          • total_tokens: int

            Total number of tokens used (input + output).

          • type: Literal["tokens"]

            The type of the usage object. Always tokens for this variant.

            • "tokens"
          • input_token_details: Optional[UsageTokensInputTokenDetails]

            Details about the input tokens billed for this request.

            • audio_tokens: Optional[int]

              Number of audio tokens billed for this request.

            • text_tokens: Optional[int]

              Number of text tokens billed for this request.

        • class UsageDuration: …

          Usage statistics for models billed by audio input duration.

          • seconds: float

            Duration of the input audio in seconds.

          • type: Literal["duration"]

            The type of the usage object. Always duration for this variant.

            • "duration"
    • class TranscriptionDiarized: …

      Represents a diarized transcription response returned by the model, including the combined transcript and speaker-segment annotations.

      • duration: float

        Duration of the input audio in seconds.

      • segments: List[TranscriptionDiarizedSegment]

        Segments of the transcript annotated with timestamps and speaker labels.

        • id: str

          Unique identifier for the segment.

        • end: float

          End timestamp of the segment in seconds.

        • speaker: str

          Speaker label for this segment. When known speakers are provided, the label matches known_speaker_names[]. Otherwise speakers are labeled sequentially using capital letters (A, B, ...).

        • start: float

          Start timestamp of the segment in seconds.

        • text: str

          Transcript text for this segment.

        • type: Literal["transcript.text.segment"]

          The type of the segment. Always transcript.text.segment.

          • "transcript.text.segment"
      • task: Literal["transcribe"]

        The type of task that was run. Always transcribe.

        • "transcribe"
      • text: str

        The concatenated transcript text for the entire audio input.

      • usage: Optional[Usage]

        Token or duration usage statistics for the request.

        • class UsageTokens: …

          Usage statistics for models billed by token usage.

          • input_tokens: int

            Number of input tokens billed for this request.

          • output_tokens: int

            Number of output tokens generated.

          • total_tokens: int

            Total number of tokens used (input + output).

          • type: Literal["tokens"]

            The type of the usage object. Always tokens for this variant.

            • "tokens"
          • input_token_details: Optional[UsageTokensInputTokenDetails]

            Details about the input tokens billed for this request.

            • audio_tokens: Optional[int]

              Number of audio tokens billed for this request.

            • text_tokens: Optional[int]

              Number of text tokens billed for this request.

        • class UsageDuration: …

          Usage statistics for models billed by audio input duration.

          • seconds: float

            Duration of the input audio in seconds.

          • type: Literal["duration"]

            The type of the usage object. Always duration for this variant.

            • "duration"
    • class TranscriptionVerbose: …

      Represents a verbose json transcription response returned by model, based on the provided input.

      • duration: float

        The duration of the input audio.

      • language: str

        The language of the input audio.

      • text: str

        The transcribed text.

      • segments: Optional[List[TranscriptionSegment]]

        Segments of the transcribed text and their corresponding details.

        • id: int

          Unique identifier of the segment.

        • avg_logprob: float

          Average logprob of the segment. If the value is lower than -1, consider the logprobs failed.

        • compression_ratio: float

          Compression ratio of the segment. If the value is greater than 2.4, consider the compression failed.

        • end: float

          End time of the segment in seconds.

        • no_speech_prob: float

          Probability of no speech in the segment. If the value is higher than 1.0 and the avg_logprob is below -1, consider this segment silent.

        • seek: int

          Seek offset of the segment.

        • start: float

          Start time of the segment in seconds.

        • temperature: float

          Temperature parameter used for generating the segment.

        • text: str

          Text content of the segment.

        • tokens: List[int]

          Array of token IDs for the text content.

      • usage: Optional[Usage]

        Usage statistics for models billed by audio input duration.

        • seconds: float

          Duration of the input audio in seconds.

        • type: Literal["duration"]

          The type of the usage object. Always duration for this variant.

          • "duration"
      • words: Optional[List[TranscriptionWord]]

        Extracted words and their corresponding timestamps.

        • end: float

          End time of the word in seconds.

        • start: float

          Start time of the word in seconds.

        • word: str

          The text content of the word.

Translations

Create translation

audio.translations.create(TranslationCreateParams**kwargs) -> TranslationCreateResponse

post /audio/translations

Translates audio into English.

Parameters

  • file: FileTypes

    The audio file object (not file name) translate, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm.

  • model: Union[str, AudioModel]

    ID of the model to use. Only whisper-1 (which is powered by our open source Whisper V2 model) is currently available.

    • str

    • Literal["whisper-1", "gpt-4o-transcribe", "gpt-4o-mini-transcribe", 2 more]

      • "whisper-1"

      • "gpt-4o-transcribe"

      • "gpt-4o-mini-transcribe"

      • "gpt-4o-mini-transcribe-2025-12-15"

      • "gpt-4o-transcribe-diarize"

  • prompt: Optional[str]

    An optional text to guide the model's style or continue a previous audio segment. The prompt should be in English.

  • response_format: Optional[Literal["json", "text", "srt", 2 more]]

    The format of the output, in one of these options: json, text, srt, verbose_json, or vtt.

    • "json"

    • "text"

    • "srt"

    • "verbose_json"

    • "vtt"

  • temperature: Optional[float]

    The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use log probability to automatically increase the temperature until certain thresholds are hit.

Returns

  • TranslationCreateResponse

    • class Translation: …

      • text: str
    • class TranslationVerbose: …

      • duration: float

        The duration of the input audio.

      • language: str

        The language of the output translation (always english).

      • text: str

        The translated text.

      • segments: Optional[List[TranscriptionSegment]]

        Segments of the translated text and their corresponding details.

        • id: int

          Unique identifier of the segment.

        • avg_logprob: float

          Average logprob of the segment. If the value is lower than -1, consider the logprobs failed.

        • compression_ratio: float

          Compression ratio of the segment. If the value is greater than 2.4, consider the compression failed.

        • end: float

          End time of the segment in seconds.

        • no_speech_prob: float

          Probability of no speech in the segment. If the value is higher than 1.0 and the avg_logprob is below -1, consider this segment silent.

        • seek: int

          Seek offset of the segment.

        • start: float

          Start time of the segment in seconds.

        • temperature: float

          Temperature parameter used for generating the segment.

        • text: str

          Text content of the segment.

        • tokens: List[int]

          Array of token IDs for the text content.

Example

import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ.get("OPENAI_API_KEY"),  # This is the default and can be omitted
)
translation = client.audio.translations.create(
    file=b"Example data",
    model="whisper-1",
)
print(translation)

Response

{
  "text": "text"
}

Example

from openai import OpenAI
client = OpenAI()

audio_file = open("speech.mp3", "rb")
transcript = client.audio.translations.create(
  model="whisper-1",
  file=audio_file
)

Response

{
  "text": "Hello, my name is Wolfgang and I come from Germany. Where are you heading today?"
}

Domain Types

Translation

  • class Translation: …

    • text: str

Translation Verbose

  • class TranslationVerbose: …

    • duration: float

      The duration of the input audio.

    • language: str

      The language of the output translation (always english).

    • text: str

      The translated text.

    • segments: Optional[List[TranscriptionSegment]]

      Segments of the translated text and their corresponding details.

      • id: int

        Unique identifier of the segment.

      • avg_logprob: float

        Average logprob of the segment. If the value is lower than -1, consider the logprobs failed.

      • compression_ratio: float

        Compression ratio of the segment. If the value is greater than 2.4, consider the compression failed.

      • end: float

        End time of the segment in seconds.

      • no_speech_prob: float

        Probability of no speech in the segment. If the value is higher than 1.0 and the avg_logprob is below -1, consider this segment silent.

      • seek: int

        Seek offset of the segment.

      • start: float

        Start time of the segment in seconds.

      • temperature: float

        Temperature parameter used for generating the segment.

      • text: str

        Text content of the segment.

      • tokens: List[int]

        Array of token IDs for the text content.

Translation Create Response

  • TranslationCreateResponse

    • class Translation: …

      • text: str
    • class TranslationVerbose: …

      • duration: float

        The duration of the input audio.

      • language: str

        The language of the output translation (always english).

      • text: str

        The translated text.

      • segments: Optional[List[TranscriptionSegment]]

        Segments of the translated text and their corresponding details.

        • id: int

          Unique identifier of the segment.

        • avg_logprob: float

          Average logprob of the segment. If the value is lower than -1, consider the logprobs failed.

        • compression_ratio: float

          Compression ratio of the segment. If the value is greater than 2.4, consider the compression failed.

        • end: float

          End time of the segment in seconds.

        • no_speech_prob: float

          Probability of no speech in the segment. If the value is higher than 1.0 and the avg_logprob is below -1, consider this segment silent.

        • seek: int

          Seek offset of the segment.

        • start: float

          Start time of the segment in seconds.

        • temperature: float

          Temperature parameter used for generating the segment.

        • text: str

          Text content of the segment.

        • tokens: List[int]

          Array of token IDs for the text content.

Speech

Create speech

audio.speech.create(SpeechCreateParams**kwargs) -> BinaryResponseContent

post /audio/speech

Generates audio from the input text.

Returns the audio file content, or a stream of audio events.

Parameters

  • input: str

    The text to generate audio for. The maximum length is 4096 characters.

  • model: Union[str, SpeechModel]

    One of the available TTS models: tts-1, tts-1-hd, gpt-4o-mini-tts, or gpt-4o-mini-tts-2025-12-15.

    • str

    • Literal["tts-1", "tts-1-hd", "gpt-4o-mini-tts", "gpt-4o-mini-tts-2025-12-15"]

      • "tts-1"

      • "tts-1-hd"

      • "gpt-4o-mini-tts"

      • "gpt-4o-mini-tts-2025-12-15"

  • voice: Voice

    The voice to use when generating the audio. Supported built-in voices are alloy, ash, ballad, coral, echo, fable, onyx, nova, sage, shimmer, verse, marin, and cedar. You may also provide a custom voice object with an id, for example { "id": "voice_1234" }. Previews of the voices are available in the Text to speech guide.

    • str

    • Literal["alloy", "ash", "ballad", 7 more]

      • "alloy"

      • "ash"

      • "ballad"

      • "coral"

      • "echo"

      • "sage"

      • "shimmer"

      • "verse"

      • "marin"

      • "cedar"

    • class VoiceID: …

      Custom voice reference.

      • id: str

        The custom voice ID, e.g. voice_1234.

  • instructions: Optional[str]

    Control the voice of your generated audio with additional instructions. Does not work with tts-1 or tts-1-hd.

  • response_format: Optional[Literal["mp3", "opus", "aac", 3 more]]

    The format to audio in. Supported formats are mp3, opus, aac, flac, wav, and pcm.

    • "mp3"

    • "opus"

    • "aac"

    • "flac"

    • "wav"

    • "pcm"

  • speed: Optional[float]

    The speed of the generated audio. Select a value from 0.25 to 4.0. 1.0 is the default.

  • stream_format: Optional[Literal["sse", "audio"]]

    The format to stream the audio in. Supported formats are sse and audio. sse is not supported for tts-1 or tts-1-hd.

    • "sse"

    • "audio"

Returns

  • BinaryResponseContent

Example

import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ.get("OPENAI_API_KEY"),  # This is the default and can be omitted
)
speech = client.audio.speech.create(
    input="input",
    model="tts-1",
    voice="alloy",
)
print(speech)
content = speech.read()
print(content)

Example

from pathlib import Path
import openai

speech_file_path = Path(__file__).parent / "speech.mp3"
with openai.audio.speech.with_streaming_response.create(
  model="gpt-4o-mini-tts",
  voice="alloy",
  input="The quick brown fox jumped over the lazy dog."
) as response:
  response.stream_to_file(speech_file_path)

Domain Types

Speech Model

  • Literal["tts-1", "tts-1-hd", "gpt-4o-mini-tts", "gpt-4o-mini-tts-2025-12-15"]

    • "tts-1"

    • "tts-1-hd"

    • "gpt-4o-mini-tts"

    • "gpt-4o-mini-tts-2025-12-15"

Voices

Voice Consents