For Agents
Provision live streaming channels, manage stream keys and recordings, and authorise playback for low-latency interactive video applications.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Amazon Interactive Video Service, 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://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 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 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 Amazon Interactive Video Service API.
Provision low-latency live streaming channels via /CreateChannel
Generate and rotate broadcast stream keys with /CreateStreamKey
Configure session recording to S3 through /CreateRecordingConfiguration
GET STARTED
Use for: I need to spin up a new live streaming channel, Get the playback URL for a channel, Rotate the stream key for a creator's channel, List all live streams happening in us-east-1 right now
Not supported: Does not handle video-on-demand transcoding, ad insertion, or chat — use for low-latency live streaming channel and recording management only.
Jentic publishes the only available OpenAPI specification for Amazon Interactive Video Service, keeping it validated and agent-ready. Amazon IVS is a managed live streaming service that ingests RTMPS broadcasts and delivers low-latency HLS playback to viewers worldwide. The 28-endpoint API covers channel creation, stream key rotation, recording configurations that archive sessions to S3, playback authorization keys for private streams, and EventBridge integration for real-time stream lifecycle signals. It is built for interactive applications such as live shopping, esports, and audience-driven shows where sub-five-second glass-to-glass latency matters.
Authorise private playback via signed JWT with playback key pairs
List active live streams in a region using /ListStreams
Stop in-progress streams server-side with /StopStream
Tag channels and resources for billing and inventory tracking
Patterns agents use Amazon Interactive Video Service API for, with concrete tasks.
★ Live Shopping Streams
Power live shopping experiences where presenters demo products and viewers buy in real time. Amazon IVS provides sub-five-second latency, channel-per-creator provisioning, and EventBridge signals when streams start or stop so the storefront can flip product availability immediately. The /CreateChannel and /CreateStreamKey endpoints let teams onboard a new presenter in seconds rather than minutes.
Create a new IVS channel named 'spring-collection-live' with STANDARD type, generate a stream key, and return the ingest endpoint and playback URL
Creator Platform Channel Lifecycle
Run a creator economy platform where each user gets their own channel and stream key. The IVS API supports per-creator resource provisioning, stream key rotation when creators are compromised, and tag-based filtering so platform analytics can group streams by tier or vertical. Recording configurations let creators automatically archive every broadcast to S3 for VOD playback later.
Create a recording configuration that writes to bucket 'creator-archives' with thumbnail interval 60 and attach it to channel arn:aws:ivs:us-east-1:123:channel/abc
Private and Token-Gated Playback
Restrict live streams to authenticated viewers using IVS playback authorization. The /ImportPlaybackKeyPair endpoint imports an ECDSA public key, and the application backend signs short-lived JWTs that the player exchanges for stream access. This pattern fits paid events, internal town halls, and any context where playback URLs cannot be public.
Import a playback key pair named 'paid-event-key' with the supplied PEM public key for use signing playback JWTs
AI Agent Live Stream Operations
AI agents call Amazon IVS through Jentic to provision channels on demand, rotate compromised stream keys, and stop streams that violate policy. The agent searches Jentic for the right operation, loads the input schema, and executes with credentials kept in the Jentic vault. This is faster than embedding SigV4 signing into every agent runtime and keeps AWS keys out of the LLM context.
Search Jentic for 'stop a live stream', load the StopStream schema, and execute against channel arn:aws:ivs:us-east-1:123:channel/abc
28 endpoints — jentic publishes the only available openapi specification for amazon interactive video service, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/CreateChannel
Create a live streaming channel
/CreateStreamKey
Generate a broadcast stream key
/CreateRecordingConfiguration
Configure S3 recording for a channel
/ListStreams
List active live streams
/StopStream
Stop an in-progress live stream
/GetStream
Get details of a live stream session
/BatchGetChannel
Batch fetch channel metadata
/CreateChannel
Create a live streaming channel
/CreateStreamKey
Generate a broadcast stream key
/CreateRecordingConfiguration
Configure S3 recording for a channel
/ListStreams
List active live streams
/StopStream
Stop an in-progress live stream
Three things that make agents converge on Jentic-routed access.
Credential isolation
AWS access keys for IVS are stored encrypted in the Jentic vault. Jentic performs SigV4 signing at execution time and returns scoped tokens to the agent, so raw AWS secrets never enter the agent's context.
Intent-based discovery
Agents search Jentic by intent such as 'create a live streaming channel' or 'stop a live stream' and Jentic returns the matching IVS operation with its input schema, so the agent can call the right endpoint without parsing AWS docs.
Time to first call
Direct AWS IVS integration: 1-2 days to wire up SigV4, IAM, and lifecycle handling. Through Jentic: under 1 hour — search, load the schema, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using Amazon Interactive Video Service API through Jentic.
Why is there no official OpenAPI spec for Amazon Interactive Video Service?
AWS does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Amazon Interactive Video Service 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 Amazon IVS API use?
Amazon IVS uses AWS Signature Version 4 (SigV4) HMAC request signing. Each call must be signed with an access key, secret key, and optional session token scoped to the IVS IAM permissions. Through Jentic, these credentials sit in the encrypted vault and signing happens at execution time so the agent never sees the raw secret.
Can I create a private live stream with the Amazon IVS API?
Yes. Import an ECDSA public key with POST /ImportPlaybackKeyPair, then sign short-lived JWTs server-side with the matching private key. Configure the channel for authorized playback so the player must present a valid JWT to start playback.
What are the rate limits for the Amazon IVS API?
Per-region quotas apply, including limits on channels per account, concurrent live viewers, and TPS for control plane operations such as CreateChannel and CreateStreamKey. Check the IVS service quotas in the AWS console for the current limits in your account.
How do I provision a new creator channel through Jentic?
Search Jentic for 'create live streaming channel', load the schema for POST /CreateChannel, submit the channel name and type, then call POST /CreateStreamKey for the same channel ARN. Jentic handles SigV4 signing on both calls.
Can I record live streams to S3 using the Amazon IVS API?
Yes. POST /CreateRecordingConfiguration creates a configuration pointing at an S3 bucket with optional thumbnail intervals, and channels created or updated with that configuration ARN automatically archive every broadcast session to S3.
Can I stop a live stream remotely with the Amazon IVS API?
Yes. POST /StopStream takes a channel ARN and ends the active broadcast session. This is useful for moderation flows where the platform needs to terminate a stream that violates terms of service without waiting for the broadcaster to disconnect.
/GetStream
Get details of a live stream session
/BatchGetChannel
Batch fetch channel metadata