Whisper

Popular
OpenAI
Speech-to-Text

OpenAI's Whisper running on Replicate. General-purpose speech recognition trained on 680k hours of multilingual audio. Transcribes and translates 99 languages, robust to accents and background noise, and outputs plain text, segments, or word-level timestamps.

Transcribe with Whisper
Upload an audio file and get a written transcript.
Sign in to try this model with €5 free credits.
Sign in
Transcript appears here.
TL;DRΒ·Last updated June 24, 2026

Whisper is speech-to-text AI model from OpenAI, priced at €0.000 per 1M input tokens with a unknown context window.

Try Whisper

Drop audio file here

MP3, WAV, M4A, FLAC (max 25MB)

Sign in to generate β€” 50 free credits on sign-up

Pricing

Price per Generation
Per generation€2.00

API Integration

Use our OpenAI-compatible API to integrate Whisper into your application.

Install
npm install railwail
JavaScript / TypeScript
import railwail from "railwail";

const rw = railwail("YOUR_API_KEY");

// Simple β€” just pass a string
const reply = await rw.run("whisper-replicate", "Hello! What can you do?");
console.log(reply);

// With message history
const reply2 = await rw.run("whisper-replicate", [
  { role: "system", content: "You are a helpful assistant." },
  { role: "user", content: "Explain quantum computing simply." },
]);
console.log(reply2);

// Full response with usage info
const res = await rw.chat("whisper-replicate", [
  { role: "user", content: "Hello!" },
], { temperature: 0.7, max_tokens: 500 });
console.log(res.choices[0].message.content);
console.log(res.usage);
Specifications
Price
€2.00
Developer
OpenAI
Category
Speech-to-Text
Supported Formats
audio
Tags
replicate
openai
whisper
stt
transcription
multilingual
open-weights

Frequently asked questions

Start using Whisper today

Get started with free credits. No credit card required. Access Whisper and 100+ other models through a single API.