Developer API
Build with the Translation API
Integrate real-time translation into your applications with our powerful, easy-to-use API.
Low Latency
Average response time under 100ms for text translation.
100+ Languages
Full support for all languages available in our platform.
Secure
Enterprise-grade security with encrypted API calls.
RESTful
Simple REST API with comprehensive documentation.
Quick Start
Get started with just a few lines of code
// Translate text using FlyOver.direct API
const response = await fetch('https://api.flyover.direct/v1/translate/text', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
text: 'Hello, how are you?',
source_language: 'en',
target_language: 'es'
})
});
const data = await response.json();
console.log(data.translated_text); // "Hola, ¿cómo estás?"API Endpoints
Core endpoints for translation services
POST
/v1/translate/textPOST
/v1/translate/audioGET
/v1/languagesPOST
/v1/detectGET
/v1/usage