Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / AI/ML / AssemblyAI API
AssemblyAI API logo

AssemblyAI API

★ Only Publicly Available OpenAPI DocumentAI/MLSpeechapiKey12 EndpointsREST

For Agents

Transcribe audio, stream realtime speech-to-text, and run LLM chat completions over the resulting transcripts.

Use for: I need to transcribe a podcast audio file, Get the SRT subtitles for a video, Search a transcript for every mention of a specific word, List all transcripts created in my account

Not supported: Does not handle text-to-speech, voice cloning, or audio editing — use for speech-to-text transcription, transcript-derived data, and transcript-grounded LLM completions only.

Jentic publishes the only available OpenAPI specification for AssemblyAI API, keeping it validated and agent-ready. AssemblyAI is a speech-to-text and audio intelligence provider offering high-accuracy transcription, real-time streaming, and an LLM that operates over transcripts. The API exposes 12 endpoints across file upload, transcripts, transcript-derived data (sentences, paragraphs, subtitles, redacted audio, word search), realtime streaming tokens, and LLM chat completions. Authentication is via the authorization header.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the AssemblyAI API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the AssemblyAI 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.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# 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 instance

Jentic 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.

Capabilities

What an agent can do with AssemblyAI API.

Upload an audio file to AssemblyAI for transcription

Create a transcript from a hosted audio URL or uploaded file

Retrieve a completed transcript with word-level timestamps

Generate SRT or VTT subtitle files from a transcript

Search for specific words across a transcript

Mint short-lived tokens for realtime streaming transcription

Run an LLM chat completion grounded in a transcript

Use Cases

Patterns agents use AssemblyAI API for, with concrete tasks.

★ Podcast and Video Transcription

Upload media files via POST /v2/upload, kick off transcription via POST /v2/transcript, and retrieve the completed transcript via GET /v2/transcript/{transcript_id}. Generate SRT or VTT subtitles from the same transcript with GET /v2/transcript/{transcript_id}/subtitles. Suitable for podcast networks and video publishers needing accurate captions at scale.

Upload episode-42.mp3 to AssemblyAI, create a transcript, poll for completion, and download the SRT subtitles

Realtime Streaming Transcription

Mint a short-lived realtime token via POST /v2/realtime/token and use it from a browser or call platform to stream audio for live transcription. Suitable for contact centres, live captions, and meeting-assistant agents where latency matters.

Create a realtime streaming token via POST /v2/realtime/token and return it for the client to open a websocket connection

Compliance-Aware Audio Redaction

Create a transcript with PII redaction enabled, then download the redacted audio via GET /v2/transcript/{transcript_id}/redacted-audio. Useful where call recordings need to retain content for review while removing names, card numbers, and other sensitive entities.

Create a transcript with PII redaction for a customer-support call, then retrieve the redacted audio file via GET /v2/transcript/{transcript_id}/redacted-audio

LLM Q&A Over Transcripts

Use POST /v2/llm/chat-completions to run an LLM grounded in a transcript — useful for meeting summarisation, action-item extraction, and ad-hoc Q&A. Pair with GET /v2/transcript/{transcript_id}/word-search when a specific term needs to be located before the LLM call.

Submit a chat completion asking 'What were the action items?' grounded in transcript 'tx_123' via POST /v2/llm/chat-completions

AI Agent for Audio Operations

An agent integrated through Jentic can manage the full upload-transcribe-summarise pipeline, polling for transcript completion and feeding results into downstream tools — without holding the AssemblyAI API key. Jentic stores the key in its vault and uses intent search to navigate the 12 AssemblyAI operations.

Through Jentic, upload a meeting recording, transcribe it, summarise via the LLM endpoint, and post the summary to a Slack channel

Key Endpoints

12 endpoints — jentic publishes the only available openapi specification for assemblyai api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

POST

/v2/upload

Upload media file

POST

/v2/transcript

Create a transcript

GET

/v2/transcript/{transcript_id}

Get transcript

GET

/v2/transcript/{transcript_id}/subtitles

Get SRT/VTT subtitles

GET

/v2/transcript/{transcript_id}/sentences

Get transcript sentences

GET

/v2/transcript/{transcript_id}/word-search

Search for words in a transcript

POST

/v2/realtime/token

Create realtime streaming token

POST

/v2/llm/chat-completions

Run LLM chat completion over a transcript

POST

/v2/upload

Upload media file

POST

/v2/transcript

Create a transcript

GET

/v2/transcript/{transcript_id}

Get transcript

GET

/v2/transcript/{transcript_id}/subtitles

Get SRT/VTT subtitles

GET

/v2/transcript/{transcript_id}/sentences

Get transcript sentences

GET

/v2/transcript/{transcript_id}/word-search

Search for words in a transcript

POST

/v2/realtime/token

Create realtime streaming token

POST

/v2/llm/chat-completions

Run LLM chat completion over a transcript

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

AssemblyAI API keys are stored encrypted in the Jentic vault. Agents receive scoped execution access — the authorization header is injected at execution time and the raw key never enters prompts, logs, or agent memory.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent (e.g. 'transcribe audio' or 'get realtime streaming token') and Jentic returns the matching AssemblyAI operation with its input schema, so the agent does not have to read the AssemblyAI docs to find the right endpoint.

Time to first call

Time to first call

Direct AssemblyAI integration: 1-3 days to wire upload, transcript creation, polling, and subtitle retrieval. Through Jentic: under 1 hour — search by intent, load schema, execute the full pipeline.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Deepgram

→

Deepgram offers speech-to-text with strong realtime latency; AssemblyAI emphasises accuracy and audio intelligence features.

Choose Deepgram for ultra-low-latency live transcription; choose AssemblyAI when richer transcript-derived features (subtitles, summarisation, redaction) matter.

Alternative

Rev.ai

→

Rev.ai provides speech-to-text plus an option for human-verified transcripts.

Use Rev.ai when human-grade accuracy is required; pick AssemblyAI for fully automated pipelines with LLM features.

Alternative

OpenAI

→

OpenAI's audio endpoints transcribe via Whisper; AssemblyAI offers more transcript-tooling around the result.

Choose OpenAI Whisper for simple transcription within an existing OpenAI workflow; pick AssemblyAI when subtitles, redaction, and word-search features are needed.

Complementary

ElevenLabs

→

ElevenLabs handles text-to-speech generation, complementing AssemblyAI's speech-to-text direction.

Pair with AssemblyAI for full audio loops — transcribe inbound audio with AssemblyAI, generate spoken responses with ElevenLabs.

FAQs

Specific to using AssemblyAI API through Jentic.

Why is there no official OpenAPI spec for AssemblyAI API?

AssemblyAI does not publish a maintained OpenAPI specification covering all endpoints. Jentic generates and maintains this spec so that AI agents and developers can call AssemblyAI API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.

What authentication does the AssemblyAI API use?

The API uses an API key passed in the authorization header (note: lowercase 'authorization', as a raw value, not 'Bearer {key}'). Jentic stores the key in its credential vault and injects the header at execution time so the raw key never enters the agent's context.

Can I get SRT subtitles from an AssemblyAI transcript?

Yes. GET /v2/transcript/{transcript_id}/subtitles returns SRT or VTT subtitle data for a completed transcript. Pair it with GET /v2/transcript/{transcript_id}/paragraphs for paragraph-level breakdowns or GET /v2/transcript/{transcript_id}/sentences for sentence boundaries.

Does AssemblyAI support realtime streaming transcription?

Yes. POST /v2/realtime/token mints a short-lived token that a client uses to open a websocket connection for live transcription. The websocket itself is outside the REST API surface but the token endpoint is part of this OpenAPI spec.

What are the rate limits for the AssemblyAI API?

The OpenAPI specification does not document explicit rate limits. AssemblyAI publishes plan-tier limits on their pricing page — implement exponential backoff on HTTP 429 responses and batch transcript creation rather than firing requests in parallel.

How do I transcribe a file through Jentic?

Search Jentic for 'transcribe an audio file with AssemblyAI' — POST /v2/upload and POST /v2/transcript will be returned. Load each schema, upload the file, create the transcript, and poll GET /v2/transcript/{transcript_id} until status is 'completed'. Jentic handles the authorization header at every step.

GET STARTED

Start building with AssemblyAI API

Explore with Jentic
View OpenAPI Document