First month for free!

Get started

Easy-to-use AI API

API Voice to Text

The most affordable audio-to-text API on the market. Accurately and quickly transcribe audio to text with our state-of-the-art speech recognition AI model.

Get Started

Latest AI Model

Our speech recognition system uses cutting-edge AI trained on millions of hours of diverse audio data to ensure exceptional accuracy across different accents and speaking styles.

Build Your AI Features

Convert speech in over 100 languages with a simple API call. Perfect for building automated transcription services, meeting notes, or content accessibility features.

Lowest Price

Get the best value for your speech conversion needs. Just $0.17 per 1 hour of voice to text - that's a fraction of what other providers charge.

Quick API Setup

Start converting voice to text in minutes with our straightforward API integration. Switching from OpenAI? Just change one line of code to get started.

const body = new FormData();
body.append('file', 'https://output.lemonfox.ai/wikipedia_ai.mp3');
// instead of providing a URL you can also upload a file object:
// body.append('file', new Blob([await fs.readFile('/path/to/audio.mp3')]));
body.append('language', 'english');
body.append('response_format', 'json');

fetch('https://api.lemonfox.ai/v1/audio/transcriptions', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY'
  },
  body: body
})
.then(response => response.json()).then(data => {
  console.log(data['text']);
})
.catch(error => {
  console.error('Error:', error);
});
Read Docs

Frequently Asked Questions

Get Started

Other APIs: Speech-to-Text API, TTS API, Text-to-Speech API