For Agents
Generate AI voiceovers and text-to-video clips from a script, choosing from Fliki's voice and language catalog.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Fliki API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Fliki API API.
Generate an AI voiceover from a script using a chosen voice and language
Generate a fully assembled video from a script with synchronized voiceover
List supported languages for text-to-speech and text-to-video generation
List dialects available within a language to fine-tune accent and locale
GET STARTED
Use for: Generate a voiceover for this product script in US English, Create a 60-second video from this marketing copy, List all the female voices available in Spanish, Find which dialects are available for the English language
Not supported: Does not handle video editing timelines, live streaming, or transcription - use for AI text-to-speech and text-to-video generation only.
The Fliki API is the Enterprise interface to Fliki's AI text-to-speech and text-to-video platform. It exposes voice, language, and dialect catalogs, and two generation endpoints that turn text into either an audio file or a fully assembled video. The API is intentionally narrow: it covers the discovery of available voices and languages, then the creation of media from a text prompt.
Browse the catalog of AI voices including gender, style, and language coverage
Pick a voice that matches a target audience before generating media
Patterns agents use Fliki API API for, with concrete tasks.
★ Automated marketing video creation
Marketing teams turn written ad copy and product descriptions into short-form videos by posting the script to /generate/video with a chosen voice. Fliki returns a finished MP4 with synchronized voiceover, removing the manual edit step. The same flow scales to localized versions by re-running with a different language or dialect.
Generate a video from a 90-word product script using a US English female voice and return the resulting video URL
Audio version of written content
Publishers and bloggers create audio versions of articles by sending the article text to /generate/audio with a chosen voice. The endpoint returns an MP3 file that can be hosted as a podcast episode or embedded in the original article, expanding accessibility without hiring voice talent.
Generate an audio version of a 1,200-word article using a calm narrative voice and return the MP3 download URL
Localized content in multiple languages
Customer-education and onboarding teams produce localized voiceovers by querying /languages and /dialects for supported locales, then calling /generate/audio or /generate/video for each one. The voice catalog returned by /voices lets the agent choose a regionally appropriate voice for each output.
Pick the most popular female voice for each of fr-FR, es-ES, and de-DE, then generate the same script in all three locales
AI agent narrated explainer
An AI agent that produces written explainers can pipe its output directly into Fliki to deliver narrated audio or video. Through Jentic, the agent searches by intent and gets the right Fliki endpoint and voice catalog without hard-coding API paths, so the same skill works whether the user wants an MP3 or a finished video.
Given a 200-word explainer the agent has just written, generate an MP4 with a male documentary voice in en-US
5 endpoints — the fliki api is the enterprise interface to fliki's ai text-to-speech and text-to-video platform.
METHOD
PATH
DESCRIPTION
/languages
List supported languages
/dialects
List supported dialects
/voices
List available AI voices
/generate/audio
Generate an audio voiceover from text
/generate/video
Generate a video with voiceover from text
/languages
List supported languages
/dialects
List supported dialects
/voices
List available AI voices
/generate/audio
Generate an audio voiceover from text
/generate/video
Generate a video with voiceover from text
Three things that make agents converge on Jentic-routed access.
Credential isolation
Fliki bearer tokens are stored encrypted in the Jentic vault. Agents call by intent and Jentic injects the Authorization header at execution time, so the raw token never enters the agent context.
Intent-based discovery
Agents search Jentic by intent such as 'generate a video from text' and Jentic returns the matching Fliki operation with its input schema, removing the need to look up voice IDs manually before calling.
Time to first call
Direct Fliki integration: half a day to set up the bearer flow, voice lookup, and async generation polling. Through Jentic: under 1 hour to search, load the schema, and execute.
Alternatives and complements available in the Jentic catalogue.
ElevenLabs API
ElevenLabs is a voice-only TTS provider with extensive voice cloning options
Pick ElevenLabs when the agent needs voice cloning or studio-grade narration without video assembly
Synthesia API
Synthesia generates avatar-led videos rather than voiceover-over-stock-footage
Choose Synthesia when the output needs a human-presenter avatar rather than narrated stock visuals
HeyGen API
HeyGen provides avatar video generation that can pair with Fliki for varied output formats
Use HeyGen when the workflow needs an avatar presenter and Fliki when it needs script-to-video with voiceover
Specific to using Fliki API API through Jentic.
What authentication does the Fliki API use?
The Fliki API uses HTTP bearer tokens issued from a Fliki Enterprise account. Through Jentic the bearer token is held in the encrypted vault and injected into the Authorization header at execution time.
Can I generate a video from a script with the Fliki API?
Yes. POST your script to /generate/video with a chosen voice and Fliki returns a finished MP4 with synchronized voiceover.
How do I choose which voice to use?
Call GET /voices to list available voices with their language, dialect, gender, and style attributes, then pass the chosen voice ID to /generate/audio or /generate/video.
What are the rate limits for the Fliki API?
The Fliki API does not document a fixed rate limit in the spec. Generation throughput depends on your Enterprise plan. Treat 429 responses as the source of truth and back off using the Retry-After header.
How do I generate an AI voiceover through Jentic?
Search Jentic for 'generate an AI voiceover', load the schema for /generate/audio, and execute the call with your script and a chosen voice. Install with pip install jentic and sign up at https://app.jentic.com/sign-up.
Is the Fliki API free?
API access is part of Fliki's Enterprise tier rather than the standard product. Confirm the current pricing on fliki.ai before integrating.