Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

AICPA SOC for Service Organizations logoAICPA SOC for Service Organizations logo

SOC 2® Type 1 report

Audited by Prescient Assurance

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
2 Grattan Court East, Dublin, D02 VX86, Ireland
Switch to light modeSwitch to dark mode
APIs / AI/ML / Amazonaws / Amazon Polly
Amazon Polly logo

AWS Amazon Polly

Browse all Amazonaws APIs
59
AI ReadinessFoundational (C+)59/100
See full scorecard
Agent-ready OpenAPI document · curated by JenticAI/MLSpeechhmac9 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Convert text or SSML into spoken audio across multiple voices and languages, and manage pronunciation lexicons through Amazon Polly.

Use for: I need to convert a paragraph of text to speech, Generate spoken audio in a neural voice for a notification, List all available Polly voices for British English, Start a long-form synthesis task that writes the result to S3

Not supported: Does not transcribe audio, translate text, or analyze speech content - use for text-to-speech synthesis and pronunciation-lexicon management only.

Jentic publishes the only available OpenAPI specification for Amazon Polly, keeping it validated and agent-ready. Amazon Polly is a managed text-to-speech service that turns text into lifelike audio across dozens of voices, languages, and speech engines (standard, neural, long-form, and generative). The API exposes synchronous synthesis via SynthesizeSpeech for short clips, asynchronous synthesis tasks for long-form audio written to S3, and pronunciation lexicon management for fine-grained word-level control. It supports plain text and SSML input and returns MP3, OGG Vorbis, PCM, or JSON speech-mark output.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Amazon Polly to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Amazon Polly, 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://jentic.com/install.sh?src=apis&api=%2Fapis%2Famazonaws.com%2Fpolly" | sh
2

Step 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%2Famazonaws.com%2Fpolly" | 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 Amazon Polly API.

Synthesize plain text or SSML input into MP3, OGG, or PCM audio with SynthesizeSpeech

Generate speech-mark JSON aligned to sentence, word, viseme, or SSML boundaries for lipsync and captions

Run long-form synthesis tasks that write multi-megabyte audio output to an S3 bucket asynchronously

List available voices filtered by language code, gender, or supported engine (neural, generative)

Upload pronunciation lexicons in PLS format and apply them per request to override word pronunciations

Track and retrieve completed or failed synthesis tasks by TaskId for batch audio production

Use Cases

Patterns agents use Amazon Polly API for, with concrete tasks.

★ On-Demand Voice Notifications

Convert short alerts and IVR prompts to speech in real time. SynthesizeSpeech accepts up to a few thousand characters of plain text or SSML, a VoiceId, an Engine (standard, neural, generative), and an OutputFormat, and returns the audio bytes synchronously. Useful for chatbots that need a low-latency spoken response or contact-center prompts generated on the fly.

Call POST /v1/speech with Text 'Your order has shipped', VoiceId 'Joanna', Engine 'neural', and OutputFormat 'mp3'

Long-Form Audiobook Production

Produce multi-minute or multi-hour narrated audio asynchronously by starting a SpeechSynthesisTask. The task writes the output (MP3 or OGG) to a configurable S3 bucket and prefix, with optional speech marks for chapter and word alignment. Generative and long-form engines maintain a coherent, natural prosody across long passages where SynthesizeSpeech would hit character limits.

Call POST /v1/synthesisTasks with OutputS3BucketName 'my-audio', VoiceId 'Ruth', Engine 'long-form', Text containing the chapter, and OutputFormat 'mp3'

Custom Pronunciations with Lexicons

Override default pronunciations of brand names, drug names, or technical terms by uploading a PLS pronunciation lexicon. PutLexicon stores the lexicon under a name, and each SynthesizeSpeech call lists which lexicons to apply. Pairs well with neural voices for consistent product-name pronunciation across an audio library.

Call PUT /v1/lexicons/{LexiconName} 'brand-names' with the PLS XML, then call POST /v1/speech with LexiconNames ['brand-names'] and the source text

AI Agent Voice Output via Jentic

A voice-first agent uses Jentic to discover Polly's SynthesizeSpeech operation, load its schema, and convert each generated response to audio for playback. Jentic stores AWS credentials in its vault and signs every call with SigV4, so the agent only handles the response text and the resulting audio bytes.

Use Jentic to search 'convert text to speech with a neural voice', load SynthesizeSpeech, and execute it with the agent's response text

Key Endpoints

9 endpoints — jentic publishes the only available openapi specification for amazon polly, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

POST

/v1/speech

Synchronously synthesize text or SSML to audio

POST

/v1/synthesisTasks

Start an asynchronous long-form synthesis task writing to S3

GET

/v1/synthesisTasks/{TaskId}

Get the status and output URI of a synthesis task

GET

/v1/voices

List available voices filtered by language and engine

PUT

/v1/lexicons/{LexiconName}

Upload or replace a pronunciation lexicon

GET

/v1/lexicons

List stored pronunciation lexicons

POST

/v1/speech

Synchronously synthesize text or SSML to audio

POST

/v1/synthesisTasks

Start an asynchronous long-form synthesis task writing to S3

GET

/v1/synthesisTasks/{TaskId}

Get the status and output URI of a synthesis task

GET

/v1/voices

List available voices filtered by language and engine

PUT

/v1/lexicons/{LexiconName}

Upload or replace a pronunciation lexicon

GET

/v1/lexicons

List stored pronunciation lexicons

Jentic AI Readiness Score

This API is usable in Jentic One now. Its AI-readiness score against Jentic's framework shows where it stands today and where improvements would make it even easier for agents to use.

A

Amazon Polly

- Foundational (C+)
59/100
99
Foundational Compliance
55
Developer Experience & Jentic Compatibility
37
AI-Readiness & Agent Experience
94
Agent Usability
50
Security
100
AI Discoverability
Powered by JenticScoring Framework 1.0.0 | Scoring Engine 0.4.0
Show dimension breakdown
99

Foundational Compliance

Base layer of spec validity and structural soundness.

Grade: A+Signals: 4
98%

Lint Results

Aggregated quality score from linter diagnostics, weighted by severity.

100%

Resolution Completeness

Percentage of `$ref` references that resolve successfully.

100%

Specification Validity

Checks whether the API description parses successfully and conforms to its declared specification (e.g., OpenAPI).

100%

Structural Integrity

Structural correctness score based on schema issues using logarithmic dampening.

55

Developer Experience & Jentic Compatibility

Clarity, completeness, and ingestion readiness for developers and tooling.

Grade: CSignals: 4
2%

Example Density

How richly the API is illustrated with examples.

67%

Example Validity

Percentage of examples that conform to their schemas.

50%

Response Coverage

Percentage of operations with complete response definitions (success, client error, server error).

100%

Tooling Readiness

Health of API ingestion, bundling, and resolution within Jentic pipelines.

37

AI-Readiness & Agent Experience

Semantic breadth, depth, and agent comprehension for AI systems.

Grade: FSignals: 4
49%

Description Coverage

Coverage of descriptions across API elements.

0%

Error Standardization

Coverage of RFC 9457 Problem Details for error responses.

100%

OperationId Quality

Coverage, uniqueness, and casing consistency of operationIds for AI inference.

0%

Summary Coverage

Coverage of summaries across operations/tags/info.

94

Agent Usability

Functional utility, complexity comfort, and AI orchestration readiness.

Grade: A+Signals: 1
94%

Complexity Comfort

Agent comfort level based on API operational and structural complexity.

50

Security

Trust, risk posture, and security compliance.

Grade: C-Signals: 1
50%

Authentication Strength

Average quality of security schemes based on authentication method strength (weakest link for OAuth2).

100

AI Discoverability

Findability, semantic richness, and reasoning readiness.

Grade: A+Signals: 1
100%

Descriptive Richness

Clarity and depth of descriptions across API elements.

View full reportHow the score is calculatedMore about the dimensions

Score it yourself

Every API in the directory is allowlisted, so you can re-score it with no key required.

Score your own APIScoring CLI agent skill
npx @jentic/api-scorecard-cli score <openapi-url>

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Wiring Polly by hand means computing SigV4 HMAC signatures per request, routing to the correct regional polly host, and handling the split between synchronous SynthesizeSpeech and asynchronous synthesis tasks yourself. Through Jentic you install once, import Amazon Polly from the API Directory, store your AWS access keys once, and your agent calls it with signing done per request for you.

Permission scoping

You choose the operations the agent may call, so you can limit it to synthesis and voice listing, such as SynthesizeSpeech and DescribeVoices, while operations like deleting a pronunciation lexicon are not included unless you add them. Where a lexicon or task is named in the URL path, as with /v1/lexicons/{LexiconName} or /v1/synthesisTasks/{TaskId}, the rule stays scoped to the operations you grant.

Credential isolation

Your AWS access keys are stored once, encrypted, by your own Jentic One instance and used to produce a SigV4 signature for each call. The raw secret access key never enters the agent's prompt, logs, or context.

Intent-based discovery

Agents search Jentic by intent such as 'convert text to speech with a neural voice', and Jentic returns SynthesizeSpeech with its input schema and accepted VoiceId and Engine values so the agent calls the right endpoint without reading the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Amazon Transcribe

→

Transcribe inverts Polly: speech-to-text for inbound audio while Polly handles text-to-speech for outbound audio

Use Transcribe when the agent needs to convert user audio into text; use Polly when the agent must speak responses back.

Complementary

Amazon Comprehend

→

Detect language and sentiment in source text before choosing a Polly voice and engine

Use Comprehend when the agent needs to pick the correct LanguageCode for Polly based on detected source-text language.

Complementary

Amazon Rekognition

→

Combine vision analysis with Polly narration to produce described-audio for image and video content

Use Rekognition for image or video understanding, then pipe the description into Polly to generate spoken narration.

FAQs

Specific to using Amazon Polly API through Jentic.

Why is there no official OpenAPI spec for Amazon Polly?

AWS does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Amazon Polly via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the Amazon Polly API use?

Polly uses AWS SigV4 HMAC request signing with an AWS access key ID and secret. Through Jentic, AWS credentials live in the vault and SigV4 signatures are produced per request so the agent never sees raw secrets.

Can I generate long audio files like audiobooks?

Yes. Use POST /v1/synthesisTasks for asynchronous synthesis: Polly writes the full audio to your specified S3 bucket. SynthesizeSpeech (POST /v1/speech) is limited to shorter inputs and returns audio synchronously.

Which voice engines does Polly support?

Polly supports the standard, neural, long-form, and generative engines. Engine availability varies by voice; call GET /v1/voices and inspect SupportedEngines on each Voice to pick one compatible with your VoiceId.

What are the rate limits for Polly?

Polly enforces per-region transactions-per-second limits per engine; neural and generative engines have lower default TPS than standard. Throttled requests return ThrottlingException - back off and retry, or request a quota increase via Service Quotas.

How do I synthesize speech through Jentic?

Search Jentic for 'convert text to speech with a neural voice', load SynthesizeSpeech, and execute it with Text, VoiceId, and Engine. Install with pip install jentic; AWS credentials come from your Jentic One instance.

Can I limit what my agent is allowed to do with the Amazon Polly API?

Yes. Because you run Jentic One yourself, your own rules decide which Amazon Polly operations the agent may call, so you can grant just synthesis and voice listing such as SynthesizeSpeech (POST /v1/speech) and listing voices (GET /v1/voices) while withholding operations like deleting a pronunciation lexicon. Path-scoped operations like PUT /v1/lexicons/{LexiconName} and GET /v1/synthesisTasks/{TaskId} are only reachable when you grant them, and your stored AWS credentials are used to sign each permitted call without exposing the raw secret to the agent. You control the operation set and the keys, so the agent can only do what you have allowed.

GET STARTED

Start building with Amazon Polly API

Explore with Jentic One
View OpenAPI Document