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

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / AI/ML / Amazonaws / Amazon Augmented AI Runtime
Amazon Augmented AI Runtime logo

AWS Amazon Augmented AI Runtime

Browse all Amazonaws APIs
61
AI ReadinessAI-Aware (B-)61/100
See full scorecard
Agent-ready OpenAPI document · curated by JenticAI/MLMl Inferencehmac5 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Send low-confidence ML predictions to human reviewers and retrieve the human-validated result, so agents can defer hard cases instead of guessing.

Use for: Send a low-confidence model prediction to a human reviewer, Check whether a human review task has completed and retrieve the verdict, List all pending human review tasks for a flow definition, Stop a human review task that is no longer needed

Not supported: Does not create flow definitions, manage workforces, or run inference itself - use for starting, reading, stopping, and deleting individual human review tasks against an existing flow definition only.

Jentic publishes the only available OpenAPI specification for Amazon Augmented AI Runtime, keeping it validated and agent-ready. Amazon Augmented AI (A2I) is the human-in-the-loop layer for ML predictions - when a model's confidence falls below threshold, A2I routes the prediction to a configured workforce (private, vendor, or Amazon Mechanical Turk) for human review. The runtime API starts, monitors, stops, and deletes individual human review tasks (called HumanLoops) tied to a flow definition you create in the SageMaker console.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Amazon Augmented AI Runtime to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Amazon Augmented AI Runtime, 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%2Famazon-augmented-ai-runtime" | 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%2Famazon-augmented-ai-runtime" | 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 Augmented AI Runtime API.

Start a human review task with StartHumanLoop attached to a flow definition and input data

Read the status and reviewer output of a human review task with DescribeHumanLoop

List human review tasks created against a given flow definition with ListHumanLoops

Stop an in-progress human review task with StopHumanLoop when the result is no longer needed

Delete a completed human review task with DeleteHumanLoop to clean up state

Pass arbitrary structured input to a human review task and receive structured reviewer output

Use Cases

Patterns agents use Amazon Augmented AI Runtime API for, with concrete tasks.

★ Human-in-the-loop for low-confidence predictions

ML teams use A2I to defer borderline predictions to human reviewers instead of acting on them blindly. When a SageMaker endpoint returns a confidence score below threshold, the application calls StartHumanLoop with the input data and the FlowDefinitionArn that defines the reviewer UI and workforce; once a reviewer submits, DescribeHumanLoop returns the structured human-validated result.

Call StartHumanLoop with FlowDefinitionArn for the document-classification flow, HumanLoopName='doc-1234', and the document JSON as input, then poll DescribeHumanLoop until status is Completed.

Compliance and audit review of ML decisions

Regulated teams use A2I to ensure a percentage of automated decisions are reviewed by qualified humans for audit. By configuring the flow definition to sample a fixed proportion of predictions and route them to a private workforce, A2I produces a defensible record of human-validated outcomes that ListHumanLoops and DescribeHumanLoop can replay during audits.

Call ListHumanLoops with FlowDefinitionArn and a CreationTimeAfter filter to retrieve all sampled review tasks from the last quarter for audit export.

Document and image review for ML pipelines

Document- and image-processing teams use A2I to add human verification to OCR, object-detection, and form-extraction pipelines. The flow definition renders the document or image alongside the model's prediction in the reviewer UI; the reviewer corrects or confirms it; DescribeHumanLoop returns the corrected result for downstream pipeline steps.

Submit StartHumanLoop with the Textract output as InputContent and the document-extraction flow definition, then on Completed status feed reviewer-corrected fields back into the downstream pipeline.

Agent-driven human-fallback through Jentic

AI agents that need to defer hard cases use Jentic to call StartHumanLoop and DescribeHumanLoop without holding raw AWS credentials. Jentic stores keys in your Jentic One instance, signs each request with SigV4, and returns the structured response - so an agent can pause its workflow until a human verdict arrives, then resume with the validated result.

Search Jentic for 'send a prediction for human review', load StartHumanLoop, and execute it when the agent's own confidence is below 0.7, then poll DescribeHumanLoop until Completed.

Key Endpoints

5 endpoints — jentic publishes the only available openapi specification for amazon augmented ai runtime, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

POST

/human-loops

Start a human review task

GET

/human-loops/{HumanLoopName}

Read the status and output of a human review task

GET

/human-loops

List human review tasks for a flow definition

POST

/human-loops/stop

Stop an in-progress human review task

DELETE

/human-loops/{HumanLoopName}

Delete a completed human review task

POST

/human-loops

Start a human review task

GET

/human-loops/{HumanLoopName}

Read the status and output of a human review task

GET

/human-loops

List human review tasks for a flow definition

POST

/human-loops/stop

Stop an in-progress human review task

DELETE

/human-loops/{HumanLoopName}

Delete a completed human review task

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 Augmented AI Runtime

- AI-Aware (B-)
61/100
100
Foundational Compliance
63
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
100

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.

63

Developer Experience & Jentic Compatibility

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

Grade: B-Signals: 4
0%

Example Density

How richly the API is illustrated with examples.

100%

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
50%

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 Amazon Augmented AI Runtime by hand means implementing AWS SigV4 signing, resolving the a2i-runtime.sagemaker regional host, and reading reviewer output from the S3 URI the loop writes rather than an inline response. Through Jentic you install once, import Amazon Augmented AI Runtime from the API Directory, store your AWS access key and secret once, and your agent calls it.

Permission scoping

A2I Runtime takes the FlowDefinitionArn and input payload in the request body, so scope your agent to the operations it needs rather than to a single flow: for example allow StartHumanLoop and DescribeHumanLoop for reading verdicts. You choose the operations it may call, so StopHumanLoop and DeleteHumanLoop are not included unless you add them.

Credential isolation

Your AWS access key and secret are stored once, encrypted, by your own Jentic One instance and each request is signed with SigV4 at execution time. They never enter the agent's prompt, logs, or context.

Intent-based discovery

Agents search Jentic by intent such as 'send a prediction for human review' or 'check whether a human loop completed', and Jentic returns the matching operation like StartHumanLoop or DescribeHumanLoop with its input schema so the agent calls it without browsing the AWS docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Amazon SageMaker

→

Create the FlowDefinition and produce the predictions that A2I reviews

Use SageMaker to define the flow and serve predictions; use A2I Runtime when those predictions fall below confidence threshold.

Complementary

Amazon Textract

→

Textract output is a common A2I input for human document review

Use Textract for document OCR; route low-confidence Textract output through A2I when accuracy matters.

Alternative

Amazon Mechanical Turk

→

Lower-level crowdsourcing API - A2I sits on top of it for ML-specific review

Choose Mechanical Turk when you need direct control over crowdsourced HIT design; choose A2I when you want managed integration with SageMaker predictions.

FAQs

Specific to using Amazon Augmented AI Runtime API through Jentic.

Why is there no official OpenAPI spec for Amazon Augmented AI Runtime?

AWS does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Amazon Augmented AI Runtime 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 Augmented AI Runtime API use?

A2I Runtime uses AWS Signature Version 4 HMAC signing with an access key ID and secret access key, optionally with a session token. Through Jentic, those credentials live in your Jentic One instance and the agent never handles raw secrets - Jentic signs each request server-side.

Can I create a flow definition with the Amazon Augmented AI Runtime API?

No - flow definitions are created via the SageMaker control-plane API (CreateFlowDefinition), not the A2I runtime. The runtime only starts, reads, stops, and deletes individual HumanLoop tasks against an already-defined flow. Set up the flow definition first in SageMaker, then call StartHumanLoop here.

What are the rate limits for the Amazon Augmented AI Runtime API?

AWS does not publish a fixed RPS for A2I Runtime in the spec; standard AWS API throttling applies. The deeper bottleneck is reviewer throughput, not API rate - high-volume workflows should size the workforce appropriately and use ListHumanLoops to monitor backlog.

How do I send a model prediction for human review through Jentic?

Search Jentic for 'send a prediction for human review', load StartHumanLoop, and call POST /human-loops with FlowDefinitionArn, a unique HumanLoopName, and the input JSON. Then poll DescribeHumanLoop until HumanLoopStatus is Completed and read HumanLoopOutput.OutputS3Uri for the reviewer's verdict. Install with pip install jentic.

Where does the Amazon Augmented AI Runtime API store the reviewer's output?

Reviewer output is written to the S3 bucket configured in the flow definition, not returned inline. DescribeHumanLoop returns an OutputS3Uri pointing at the JSON object the reviewer produced; your application reads it directly from S3 once the loop status is Completed.

Can I limit what my agent is allowed to do with the Amazon Augmented AI Runtime API?

Yes. Because you run Jentic One yourself, your own rules decide which A2I Runtime operations the agent may call, so you can allow StartHumanLoop and DescribeHumanLoop for sending predictions and reading verdicts while leaving StopHumanLoop, DeleteHumanLoop, and ListHumanLoops out unless you add them. The FlowDefinitionArn and input payload travel in the request body, so scoping is done at the operation level rather than per flow. Your AWS access key and secret stay in your own Jentic One instance and are signed with SigV4 at execution time, so the agent only ever exercises the operations you granted.

GET STARTED

Start building with Amazon Augmented AI Runtime API

Explore with Jentic One
View OpenAPI Document