API docs
Документация по endpoint-ам и payload-ам
Внутренний frontend-документационный экран для разработчиков: описание endpoint-ов, кодовые сниппеты и структура запросов.
Authentication
Every request requires a Bearer API key created inside the Synthora workspace.
curl -H "Authorization: Bearer sk_live_xxx" https://api.synthora.app/v1/models
Text generation
Unified endpoint for chat, reasoning, and document analysis.
POST /v1/generate/text { model: 'gpt-4o', input: 'Create onboarding copy' }
Image generation
Supports prompt, negative prompt, aspect ratio and reference images.
POST /v1/generate/image { model: 'imagen-4-ultra', prompt: 'Editorial campaign' }
Video generation
Async job endpoint with callback support planned for webhook events.
POST /v1/generate/video { model: 'veo-3.1', duration: 15 }