Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Transkriptor 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.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Ftranskriptor.com%2Ftranskriptor-api" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Ftranskriptor.com%2Ftranskriptor-api" | 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 Transkriptor API.
Transcribe local file
Get file content
Rename file
Delete file
GET STARTED
For Agents
Programmatically transcribe local file, transcribe meeting. Covers 20 operations with bearer authentication.
Use for: I need to transcribe local file, I want to transcribe meeting, Search for transcribe via url, Find all file content
Not supported: Does not handle payments, communications, or crm - use for ai and machine learning only.
Transkriptor API provides audio and video transcription services with speaker recognition, AI chat, and text-to-speech capabilities. The API exposes 20 endpoints secured with bearer authentication.
Monitor Transkriptor API operational status and events
Patterns agents use Transkriptor API for, with concrete tasks.
★ AI and Machine Learning Operations
Use the Transkriptor API to perform ai ml operations programmatically. The API provides 20 endpoints covering core functionality including transcribe local file, transcribe meeting, transcribe via url.
Call POST /transcribe/local to transcribe local file
Automated Transcription Management
Automate transcription operations by combining multiple Transkriptor API endpoints. Agents can transcribe meeting and then transcribe via url in a single workflow.
Call POST /transcribe/meeting to transcribe meeting, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Transkriptor API endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle bearer tokens manually.
Search Jentic for 'transcribe local file', load the operation schema, and execute with Jentic-managed credentials
20 endpoints — transkriptor api provides audio and video transcription services with speaker recognition, ai chat, and text-to-speech capabilities.
METHOD
PATH
DESCRIPTION
/transcribe/local
Transcribe local file
/transcribe/meeting
Transcribe meeting
/transcribe/url
Transcribe via URL
/files/{file_id}/content
Get file content
/files/{file_id}
Get file detail
/files/{file_id}
Rename file
/files/{file_id}
Delete file
/meetings/{meeting_id}
Get meeting details
/transcribe/local
Transcribe local file
/transcribe/meeting
Transcribe meeting
/transcribe/url
Transcribe via URL
/files/{file_id}/content
Get file content
/files/{file_id}
Get file detail
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Transkriptor API by hand means setting up its bearer token auth against app.transkriptor.com and coordinating its transcribe-then-fetch flow yourself. Through Jentic you install once, import the Transkriptor API from the API Directory, store the token once, and your agent calls it.
Permission scoping
Transkriptor puts the file id in the URL path (/files/{file_id}), so a rule can pin your agent to one file: it can read that file's content and nothing else. You choose the operations it may call, so a file update or a file deletion is not included unless you add it.
Credential isolation
Your Transkriptor API token is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'transcribe a local file' or 'get a transcribed file's content', and Jentic returns the matching Transkriptor API operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using Transkriptor API through Jentic.
What authentication does the Transkriptor API use?
The Transkriptor API uses a Bearer token in the Authorization header. Through Jentic, these credentials are stored encrypted in your Jentic One instance and injected at execution time, so raw secrets never enter the agent context.
Can I transcribe local file with the Transkriptor API?
Yes. Use the POST /transcribe/local endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Transkriptor API?
Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.
How do I transcribe local file through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'transcribe local file'. Jentic returns the matching Transkriptor API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the Transkriptor API have?
The Transkriptor API exposes 20 endpoints covering transcription, files, meetings operations.
Can I limit what my agent is allowed to do with the Transkriptor API?
Yes. Jentic One is self-hosted, so you set the rules that decide which Transkriptor operations and credentials your agent can use. Because Transkriptor puts the file id in the URL path (/files/{file_id}), you can pin the agent to a single file and let it read only that file's content. You pick the operations it may call, so renaming a file (PATCH /files/{file_id}) or deleting one (DELETE /files/{file_id}) stays off unless you add it.
/files/{file_id}
Rename file
/files/{file_id}
Delete file
/meetings/{meeting_id}
Get meeting details