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 / Cloud Infrastructure / Amazonaws / Amazon API Gateway
Amazon API Gateway logo

AWS Amazon API Gateway

Browse all Amazonaws APIs
★ Only Publicly Available OpenAPI DocumentCloud InfrastructureNetworkingapiKey120 EndpointsREST

For Agents

Create and manage REST APIs, resources, methods, integrations, deployments, custom domains, API keys, and usage plans on Amazon API Gateway through 120 operations.

Use for: I want to create a new REST API on API Gateway, List all REST APIs in a region, Get the resources tree for a specific REST API, Deploy a stage of an API to production

Not supported: Does not handle the runtime traffic or message delivery of deployed APIs — use for control-plane configuration of REST and WebSocket APIs, custom domains, API keys, and usage plans only.

Jentic publishes the only available OpenAPI specification for Amazon API Gateway, keeping it validated and agent-ready. Amazon API Gateway is a managed service for creating and operating REST and WebSocket APIs at any scale, fronting AWS Lambda, EC2-hosted services, and any HTTP backend. The control-plane API exposes 120 operations covering REST API definitions, resources, methods, integrations, deployments, stages, custom domain names, API keys, usage plans, authorizers, and documentation parts. Platform teams use it to drive infrastructure-as-code workflows that go beyond what CloudFormation exposes.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Amazon API Gateway to your agent

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

Create and version REST APIs with resources, methods, and request and response models

Wire methods to AWS Lambda, HTTP backends, and AWS service integrations including IAM and Cognito authorisers

Promote API revisions through stages with stage variables and per-stage caching configuration

Provision and rotate API keys, group them into usage plans, and attach throttling and quota limits

Bind custom domain names with ACM certificates and route them to specific API stages

Author OpenAPI documentation parts inline so generated SDKs and developer portals stay in sync

Use Cases

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

★ Programmatic REST API Provisioning

Platform teams use the API Gateway control plane to provision REST APIs without leaning on CloudFormation for every change. POST /restapis creates a new API, then POST /restapis/{restapi_id}/resources and PUT /restapis/{restapi_id}/resources/{resource_id}/methods/{http_method} build out paths and methods. CreateDeployment publishes the configuration to a named stage where it becomes live.

Call POST /restapis with name=orders-api, then POST /restapis/{id}/resources to create the /orders path, PUT a GET method on it, and POST /restapis/{id}/deployments to publish to the prod stage

API Key and Usage Plan Management

Product teams that monetise APIs use API Gateway's usage plans to assign per-customer rate limits and quotas. POST /apikeys creates a key, POST /usageplans creates a plan with throttling and quota settings, and POST /usageplans/{usageplan_id}/keys attaches the key to the plan. Customers then send the key in the x-api-key header and API Gateway enforces limits at the edge.

Call POST /apikeys to create a key for customer-acme, POST /usageplans for a tier with 100 rps and 10000 daily quota, then POST /usageplans/{id}/keys to attach

Custom Domain Name Binding

Marketing and platform teams bind acquired domains to API stages so consumers see api.example.com instead of an AWS-owned URL. POST /domainnames registers the domain with an ACM certificate, then POST /domainnames/{domain_name}/basepathmappings maps a base path to a specific REST API stage. The same domain can host multiple APIs by base path.

Call POST /domainnames with domain=api.example.com and certificateArn from ACM, then POST /domainnames/api.example.com/basepathmappings mapping /v1 to the prod stage of restapi-id

AI Agent API Operator

An AI agent invoked through Jentic operates API Gateway to provision new APIs in response to a chat or ticket flow. The agent searches Jentic for the create-rest-api and create-deployment operations, executes them with the requested resources and integrations, and returns the resulting invoke URL. Jentic handles SigV4 signing, so the agent only deals with the structured payloads.

Search Jentic for create rest api on api gateway, execute it for the named API, then create resources, methods, and a deployment to a stage in sequence

Key Endpoints

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

METHOD

PATH

DESCRIPTION

POST

/restapis

Create a new REST API

GET

/restapis/{restapi_id}/resources

List the resources tree for a REST API

POST

/restapis/{restapi_id}/deployments

Create a deployment that publishes the API to a stage

POST

/apikeys

Create an API key

POST

/usageplans

Create a usage plan with throttling and quota

POST

/domainnames

Register a custom domain name with an ACM certificate

POST

/restapis/{restapi_id}/authorizers

Create a Lambda, IAM, or Cognito authorizer for an API

POST

/restapis

Create a new REST API

GET

/restapis/{restapi_id}/resources

List the resources tree for a REST API

POST

/restapis/{restapi_id}/deployments

Create a deployment that publishes the API to a stage

POST

/apikeys

Create an API key

POST

/usageplans

Create a usage plan with throttling and quota

POST

/domainnames

Register a custom domain name with an ACM certificate

POST

/restapis/{restapi_id}/authorizers

Create a Lambda, IAM, or Cognito authorizer for an API

Why Jentic?

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

Credential management

Credential isolation

AWS access key id and secret access key for API Gateway are stored encrypted in the Jentic vault. Jentic performs SigV4 signing server side and supports STS temporary credentials, so the agent never sees the raw secret access key.

Intent-based discovery

Intent-based discovery

Agents search Jentic with phrases like create rest api or create usage plan, and Jentic returns the matching API Gateway operation with its input schema, so the agent does not have to memorise the 120-operation surface area.

Time to first call

Time to first call

Direct integration: 3 to 5 days for SigV4 signing, retry logic, and the wide surface across REST APIs, resources, methods, deployments, and usage plans. Through Jentic: under 1 hour — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

API Gateway Management API

→

Manages runtime aspects of deployed WebSocket APIs, including sending messages back to connected clients

Use the API Gateway Management API for live WebSocket connection operations on already-deployed APIs; use the control-plane API Gateway API for definitions, deployments, and stages.

Complementary

AWS Certificate Manager

→

Issues SSL certificates required when binding custom domains to API Gateway

Use ACM before API Gateway custom-domain setup to issue or import the certificate that the domain mapping depends on.

Alternative

Cloudflare

→

Cloudflare Workers and API Shield offer an alternative API edge platform with built-in WAF and DDoS protection

Choose Cloudflare when the team is not on AWS or wants edge-first WAF and Workers; choose API Gateway when integrating with Lambda, IAM, and Cognito on AWS.

FAQs

Specific to using Amazon API Gateway API through Jentic.

Why is there no official OpenAPI spec for Amazon API Gateway?

AWS does not publish an OpenAPI specification for the API Gateway control plane; the official surface is the AWS SDKs and the Smithy model. Jentic generates and maintains this spec so that AI agents and developers can call Amazon API Gateway 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 API Gateway control plane API use?

API Gateway uses AWS Signature Version 4 (SigV4) signed with an IAM access key id and secret access key, optionally with an STS session token. Through Jentic these credentials are stored encrypted in the vault and SigV4 signing is performed server side, so the agent never handles the raw secret access key.

Can I attach a custom domain to a specific stage with the Amazon API Gateway API?

Yes. POST /domainnames registers the custom domain with an ACM certificate, then POST /domainnames/{domain_name}/basepathmappings creates a mapping that routes a base path to a specific REST API id and stage. The same domain can host multiple APIs by giving each one a distinct base path.

What are the rate limits for the Amazon API Gateway control plane API?

API Gateway throttles control-plane operations per region; create and update operations like CreateRestApi and PutMethod have lower per-second limits than read operations like GetRestApis and GetResources. Throttling errors should be retried with exponential backoff. Data-plane request limits apply separately on the deployed APIs themselves.

How do I create a REST API with the Amazon API Gateway API through Jentic?

Install the SDK with pip install jentic, search Jentic for create rest api on api gateway, load the CreateRestApi operation schema, and execute it with a name and description. Jentic handles SigV4 signing and returns the new restapi_id, which you can then use to create resources, methods, and deployments.

Can I import an OpenAPI definition with the Amazon API Gateway API?

Yes. PUT /restapis/{restapi_id}#mode=import with an OpenAPI 2.0 or 3.0 document in the request body imports the definition into an existing API; POST /restapis with the body and mode=import creates a new API from an OpenAPI document. The same flow is used by the AWS Console import feature.

GET STARTED

Start building with Amazon API Gateway API

Explore with Jentic
View OpenAPI Document