All models

OpenAI: GPT-4o Mini Transcribe

openai/gpt-4o-mini-transcribe
transcription

GPT-4o Mini Transcribe is OpenAI's smaller, cost-efficient speech-to-text model built on GPT-4o Mini audio capabilities. It's priced per token (input and output), making it suitable for high-volume transcription workflows that benefit from token-level billing at a lower price point.

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-mini-transcribe",
file=open("audio.mp3", "rb"),
)
print(tr.text)
Try in the botAPI docs