Back to models
OpenAI

GPT-4o Mini Transcribe

GPT-4o mini Transcribe is a lightweight speech-to-text model powered by GPT-4o mini. 计价类型: audio

Quick Stats

Context

8K

Max Output

4K

Provider

OpenAI

Specs

2

Modalities

in audioout text

Specs & List Price (per 1M tokens)

Quality
Input $1.25Output $5
Value
Input $0.625Output $2.5

Recommended Plan

GPT-4o Mini Transcribe Starter Plan

Pay-as-you-go after top-up; $1 free credit for new users.

Buy Plan

API Endpoint

Model IDopenai/gpt-4o-mini-transcribe

cURL

curl https://intertoken.ai/v1/chat/completions \
  -H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai/gpt-4o-mini-transcribe",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

Python (openai SDK)

from openai import OpenAI

client = OpenAI(
    base_url="https://intertoken.ai/v1",
    api_key="$TOKENPORTAL_API_KEY",
)

resp = client.chat.completions.create(
    model="openai/gpt-4o-mini-transcribe",
    messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)

Start using this model

Sign up free, get an API key, and make your first call in 30 seconds.

GPT-4o Mini Transcribe · TokenPortal