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 Elastic Compute Cloud
Amazon Elastic Compute Cloud logo

AWS Amazon Elastic Compute Cloud

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

For Agents

Provision and manage EC2 instances, EBS volumes, AMIs, VPC networking, security groups, and the broad surface of AWS compute and network resources.

Use for: Launch a t3.medium EC2 instance from a specific AMI, Stop all running EC2 instances tagged Environment=dev, Create a VPC with two public and two private subnets, Authorize port 443 ingress on a security group

Not supported: Does not handle Auto Scaling Groups, Elastic Load Balancing, or container orchestration — use for EC2 instances, EBS volumes, and VPC networking primitives only.

Jentic publishes the only available OpenAPI specification for Amazon Elastic Compute Cloud, keeping it validated and agent-ready. Amazon EC2 provides resizable compute capacity in AWS, and its API is the foundational control plane for EC2 instances, EBS volumes, VPC networking, security groups, and a broad set of related compute primitives. With more than a thousand operations, the API spans instance lifecycle, AMIs, key pairs, networking (VPC, subnets, route tables, NAT, VPN), elastic IP addresses, transit gateways, and capacity reservations. Use it when an agent needs to provision compute, manage networking, or automate any AWS infrastructure-as-API workflow.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Amazon Elastic Compute Cloud to your agent

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

Launch and terminate EC2 instances with RunInstances and TerminateInstances at the requested instance type and AMI

Manage EBS volumes via CreateVolume, AttachVolume, DetachVolume, and DeleteVolume tied to instances

Define VPC networking with CreateVpc, CreateSubnet, CreateRouteTable, and CreateInternetGateway

Control inbound and outbound traffic through CreateSecurityGroup, AuthorizeSecurityGroupIngress, and RevokeSecurityGroupEgress

Allocate and associate Elastic IP addresses, create NAT gateways, and configure VPC endpoints

Operate transit gateways, VPN connections, and VPC peering for multi-VPC and hybrid networking

Use Cases

Patterns agents use Amazon Elastic Compute Cloud API for, with concrete tasks.

★ Provision a Fleet of Compute Instances

Use RunInstances to launch one or more EC2 instances of a chosen type from an AMI, attach them to a security group, and place them in a target subnet. The same call sets tags, IAM instance profiles, and user data, giving an agent everything needed to bring up workers, application servers, or batch hosts in one structured call.

Call RunInstances with ImageId, InstanceType t3.medium, MinCount 1, MaxCount 1, the chosen SubnetId, and a SecurityGroupIds list, then poll DescribeInstances until State.Name is running.

Stand Up a Production VPC

Compose a production-ready network by chaining CreateVpc, CreateSubnet for each AZ, CreateInternetGateway, CreateRouteTable, CreateNatGateway, and the route association calls. The result is a fully tagged VPC with predictable CIDR layout that workloads can be deployed into without console clicks.

Call CreateVpc with the requested CidrBlock, CreateSubnet for each AZ, CreateInternetGateway, AttachInternetGateway, then CreateRouteTable and CreateRoute to wire up egress.

Lock Down Inbound Access with Security Groups

Tighten access to a workload by replacing broad CIDR allow rules with narrow ones. AuthorizeSecurityGroupIngress adds the permitted port and source CIDR, RevokeSecurityGroupIngress removes outdated rules, and DescribeSecurityGroups gives an audit-friendly view of effective rules per group.

Call AuthorizeSecurityGroupIngress with the GroupId, IpProtocol tcp, FromPort 443, ToPort 443, and the approved CIDR ranges, then DescribeSecurityGroups to verify.

Agent-Driven Infrastructure as API

An AI agent connected via Jentic can interpret a runbook, locate the right EC2 operations, and provision compute and networking changes — launch instances, rotate AMIs, scale Auto Scaling-friendly groups, or rebuild VPC routes — without leaving the conversation. Jentic returns the matching EC2 operation and schema across the 1000+ operation surface so the agent can pick the right call.

Search Jentic for 'launch an EC2 instance', load RunInstances, execute it with the requested InstanceType, ImageId, SubnetId, and SecurityGroupIds, then DescribeInstances until running.

Key Endpoints

1182 endpoints — jentic publishes the only available openapi specification for amazon elastic compute cloud, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

POST

/#Action=RunInstances

Launch one or more EC2 instances

POST

/#Action=TerminateInstances

Terminate one or more instances

POST

/#Action=DescribeInstances

Describe instances and their state

POST

/#Action=CreateVpc

Create a VPC with a CIDR block

POST

/#Action=CreateSubnet

Create a subnet in a VPC

POST

/#Action=AuthorizeSecurityGroupIngress

Add an inbound rule to a security group

POST

/#Action=AllocateAddress

Allocate an Elastic IP address

POST

/#Action=CreateNatGateway

Create a NAT gateway in a public subnet

POST

/#Action=RunInstances

Launch one or more EC2 instances

POST

/#Action=TerminateInstances

Terminate one or more instances

POST

/#Action=DescribeInstances

Describe instances and their state

POST

/#Action=CreateVpc

Create a VPC with a CIDR block

POST

/#Action=CreateSubnet

Create a subnet in a VPC

POST

/#Action=AuthorizeSecurityGroupIngress

Add an inbound rule to a security group

POST

/#Action=AllocateAddress

Allocate an Elastic IP address

POST

/#Action=CreateNatGateway

Create a NAT gateway in a public subnet

Why Jentic?

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

Credential management

Credential isolation

AWS access keys for EC2 are stored encrypted in the Jentic vault. Jentic signs each EC2 request with SigV4 at execution time and the agent only sees scoped, short-lived access — raw access keys never enter the agent's context.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g., 'launch an EC2 instance' or 'create a security group rule') and Jentic returns the matching EC2 operation from the 1000+ operation surface with its input schema, so the agent can call the right endpoint without browsing AWS documentation.

Time to first call

Time to first call

Direct EC2 integration: 3-7 days for SigV4 signing, query/form encoding, pagination, and selecting the right operation from a very large surface. Through Jentic: under 1 hour — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Amazon Elastic Block Store

→

Block-level snapshot APIs for the volumes EC2 attaches.

Choose EBS direct APIs when the agent needs to read or write snapshot blocks rather than manage volumes through EC2.

Complementary

AWS Auto Scaling

→

Auto Scaling Groups that orchestrate EC2 instance fleets.

Choose Auto Scaling when the agent needs to manage scaling policies and groups rather than launch instances directly.

Alternative

AWS Lambda

→

Run code without managing instances or VPCs.

Choose Lambda when the workload is short-lived and event-driven, and EC2's instance lifecycle is unnecessary.

FAQs

Specific to using Amazon Elastic Compute Cloud API through Jentic.

Why is there no official OpenAPI spec for Amazon Elastic Compute Cloud?

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

EC2 uses AWS Signature Version 4 (HMAC) signing with an AWS access key ID and secret access key. Through Jentic, those credentials live encrypted in the Jentic vault and are injected into signed requests at execution time, so the agent never sees the raw secret access key.

Can I launch and tag instances in one call?

Yes. RunInstances accepts a TagSpecifications parameter that applies tags to the instance and any volumes created by the launch. There is no need to call CreateTags separately for instances launched this way.

What are the rate limits for the Amazon EC2 API?

EC2 enforces per-account, per-region request limits that vary by operation; describe operations have higher limits than write operations such as RunInstances. Specific numbers are not in the spec; the AWS user guide documents them, and ThrottlingException responses should trigger exponential backoff.

How do I launch an instance through Jentic?

Search Jentic for 'launch an EC2 instance', load RunInstances, then execute it with ImageId, InstanceType, MinCount, MaxCount, SubnetId, and SecurityGroupIds. Run pip install jentic and use the async search and execute pattern.

Does this API include Auto Scaling and Elastic Load Balancing?

No. EC2 covers instances, volumes, AMIs, and VPC networking. Auto Scaling Groups and Elastic Load Balancers live in their own AWS APIs (autoscaling and elasticloadbalancingv2) and require separate operations to manage.

GET STARTED

Start building with Amazon Elastic Compute Cloud API

Explore with Jentic
View OpenAPI Document