All models

OpenAI: GPT-4o Transcribe

openai/gpt-4o-transcribe
transcription

GPT-4o Transcribe is OpenAI's high-quality speech-to-text model built on GPT-4o audio capabilities. It's priced per token (input and output), making it suitable for workflows that benefit from token-level billing transparency.

Pricing

Audio minute

Parameters

fileaudio file (multipart)

How to use via API

from openai import OpenAI
client = OpenAI(base_url="https://api.mixen.ai/v1", api_key="mxn-...")
tr = client.audio.transcriptions.create(
model="openai/gpt-4o-transcribe",
file=open("audio.mp3", "rb"),
)
print(tr.text)
Try in the botAPI docs