LLM Reference
OpenAI API

Using GPT-4o Transcribe Diarize on OpenAI API

Implementation guide · OpenAI Transcribe · OpenAI

Serverless

OpenAI API exposes GPT-4o Transcribe Diarize through model ID gpt-4o-transcribe-diarize. Use the setup steps, sourced pricing, capabilities, and official provider links below to validate this route before deployment.

Last refreshed 2026-06-07. Next refresh: weekly.

Quick Start

  1. 1
    Create an account at OpenAI API and generate an API key.
  2. 2
    Use the OpenAI API SDK or REST API to call gpt-4o-transcribe-diarize — see the documentation for request format.
  3. 3
    You'll be billed $10.00/1M output tokens. See full pricing.

Code Examples

Install
pip install openai
API key
OPENAI_API_KEY
Model ID
gpt-4o-transcribe-diarize

Use the model slug directly, e.g. "gpt-4o" or "gpt-4.1-mini".

import os
from openai import OpenAI

client = OpenAI()  # reads OPENAI_API_KEY from env
response = client.chat.completions.create(
    model="gpt-4o-transcribe-diarize",
    messages=[{"role": "user", "content": "Hello"}]
)
print(response.choices[0].message.content)

Pricing on OpenAI API

TypePrice (per 1M)
Output tokens$10.00
Audio input$2.50

Capabilities

MultimodalAudio

About GPT-4o Transcribe Diarize

GPT-4o Transcribe Diarize is OpenAI's automatic speech recognition model with integrated speaker diarization, released October 18, 2025. Identifies and labels who is speaking at each moment in multi-speaker audio, producing a diarized_json response with speaker labels and segment timestamps. Optionally accepts 2–10 second reference audio clips for up to 4 known speakers. Requires chunking for audio >30 seconds. Same pricing as gpt-4o-transcribe: $2.50/1M audio tokens in, $10.00/1M text tokens out. API ID: gpt-4o-transcribe-diarize.

Model Specs

Released2025-10-18
Context16k
ArchitectureDecoder Only
Knowledge cutoff2024-09

Provider

OpenAI API
OpenAI API

OpenAI

San Francisco, California, United States