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 / Security / Amazonaws / AWS Certificate Manager
AWS Certificate Manager logo

AWS Certificate Manager

Browse all Amazonaws APIs
★ Only Publicly Available OpenAPI DocumentSecuritySecrets ManagementapiKey15 EndpointsREST

For Agents

Provision, list, import, and delete SSL/TLS certificates for AWS resources, and manage tags and account-level configuration through 15 ACM operations.

Use for: I want to request a public SSL certificate for example.com, List all SSL certificates issued in a region, Get the metadata for a specific ACM certificate by ARN, Import a third-party SSL certificate into ACM

Not supported: Does not handle DNS hosting, web application firewall rules, or KMS key management — use for SSL/TLS certificate issuance, import, and lifecycle on AWS only.

Jentic publishes the only available OpenAPI specification for AWS Certificate Manager, keeping it validated and agent-ready. AWS Certificate Manager (ACM) provisions, manages, and deploys SSL/TLS certificates for AWS resources such as Elastic Load Balancers, CloudFront distributions, and API Gateway endpoints. The API exposes 15 operations covering certificate request, import, listing, deletion, tagging, and account-level configuration, so platform teams can automate certificate lifecycle and avoid expiry-related outages.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the AWS Certificate Manager to your agent

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

Request public ACM certificates for one or more domain names with DNS or email validation

Import third-party certificates into ACM so they can be deployed onto AWS load balancers and CloudFront

List and describe issued certificates with their domain coverage, validation state, and expiry

Export private certificates from ACM Private CA in PEM format with passphrase protection

Tag certificates for cost allocation and apply account-level transparency-logging configuration

Use Cases

Patterns agents use AWS Certificate Manager API for, with concrete tasks.

★ Automate Public Certificate Issuance

Platform teams use ACM to issue and renew public SSL/TLS certificates for production domains without manual intervention. The RequestCertificate operation creates a new certificate for the requested domain names, and ACM auto-renews validated public certificates before expiry. Combining DNS validation with Route 53 means the entire issuance flow can be automated end to end in a few seconds, with renewal handled silently behind the scenes.

Call RequestCertificate with DomainName=api.example.com and ValidationMethod=DNS, then poll DescribeCertificate until Status is ISSUED

Certificate Inventory and Expiry Monitoring

Security teams use ListCertificates and DescribeCertificate to maintain an inventory of issued and imported certificates, surfacing those approaching expiry. ACM tags returned by ListTagsForCertificate let the inventory be filtered by environment or owner so notifications can be routed to the right team well before an outage risk.

Call ListCertificates, then DescribeCertificate for each ARN, and report any certificate with NotAfter within the next 30 days

Import Third-Party Certificates

Teams using a non-Amazon certificate authority use ImportCertificate to bring an externally issued PEM certificate, private key, and chain into ACM so it can be deployed onto AWS load balancers and CloudFront. Reissuance from the third party is followed by another ImportCertificate call against the same ARN, which keeps existing AWS resources bound to the same certificate identity.

Call ImportCertificate with Certificate, PrivateKey, and CertificateChain in PEM format, then attach the returned ARN to a load balancer listener

AI Agent Certificate Operator

An AI agent invoked through Jentic operates ACM as part of a wider deploy workflow: it requests a certificate for a new domain, validates it via DNS, and reports the resulting ARN back to a deploy pipeline. The agent searches Jentic for the request-certificate operation, loads its schema, and executes calls without needing to handle SigV4 signing manually.

Search Jentic for request a public ssl certificate, load the RequestCertificate operation, execute it for the target domain, and return the ARN

Key Endpoints

15 endpoints — jentic publishes the only available openapi specification for aws certificate manager, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

POST

/#X-Amz-Target=CertificateManager.RequestCertificate

Request a new public ACM certificate for one or more domains

POST

/#X-Amz-Target=CertificateManager.ListCertificates

List certificates in the account

POST

/#X-Amz-Target=CertificateManager.DescribeCertificate

Get detailed metadata for a certificate by ARN

POST

/#X-Amz-Target=CertificateManager.ImportCertificate

Import a third-party certificate into ACM

POST

/#X-Amz-Target=CertificateManager.DeleteCertificate

Delete a certificate that is not associated with any AWS resource

POST

/#X-Amz-Target=CertificateManager.ExportCertificate

Export a private certificate including its private key in PEM format

POST

/#X-Amz-Target=CertificateManager.RequestCertificate

Request a new public ACM certificate for one or more domains

POST

/#X-Amz-Target=CertificateManager.ListCertificates

List certificates in the account

POST

/#X-Amz-Target=CertificateManager.DescribeCertificate

Get detailed metadata for a certificate by ARN

POST

/#X-Amz-Target=CertificateManager.ImportCertificate

Import a third-party certificate into ACM

POST

/#X-Amz-Target=CertificateManager.DeleteCertificate

Delete a certificate that is not associated with any AWS resource

POST

/#X-Amz-Target=CertificateManager.ExportCertificate

Export a private certificate including its private key in PEM format

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 ACM are stored encrypted in the Jentic vault. Jentic performs SigV4 signing server side and supports temporary STS credentials, so the agent never sees the raw secret access key.

Intent-based discovery

Intent-based discovery

Agents search Jentic with phrases like request an ssl certificate or list certificates, and Jentic returns the matching ACM operation with its input schema, so the agent does not have to know the X-Amz-Target operation name format.

Time to first call

Time to first call

Direct integration: 2 to 3 days for SigV4 signing, retry logic, and IAM policy scoping. Through Jentic: under 1 hour — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Amazon API Gateway

→

API Gateway custom domain names use ACM certificates for TLS termination

Use API Gateway after ACM when the agent needs to attach a freshly issued certificate to a custom domain on a REST or HTTP API.

Complementary

Amazon Route 53

→

Route 53 hosts the DNS records used by ACM for DNS-based domain validation

Use Route 53 alongside ACM when DNS validation records need to be created automatically as part of certificate issuance.

Alternative

Cloudflare

→

Cloudflare provides its own certificate issuance and management for resources fronted by Cloudflare

Choose Cloudflare's certificate API when the asset is fronted by Cloudflare instead of AWS; choose ACM when the asset terminates TLS on AWS Elastic Load Balancing, CloudFront, or API Gateway.

FAQs

Specific to using AWS Certificate Manager API through Jentic.

Why is there no official OpenAPI spec for AWS Certificate Manager?

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

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

Can I auto-renew imported certificates with the AWS Certificate Manager API?

No. ACM only auto-renews certificates that ACM itself issued. Imported certificates must be reissued by the original certificate authority and then ImportCertificate called again against the same ARN to update the cryptographic material while preserving the binding to existing AWS resources.

What are the rate limits for the AWS Certificate Manager API?

ACM applies per-region throttling that varies by operation: read operations like ListCertificates and DescribeCertificate are throttled at higher rates than write operations like RequestCertificate and ImportCertificate. Persistent throttling returns ThrottlingException; back off with exponential delay and retry.

How do I request a public certificate with the AWS Certificate Manager API through Jentic?

Install the SDK with pip install jentic, search Jentic for request a public ssl certificate, load the RequestCertificate operation schema, and execute it with DomainName and ValidationMethod=DNS. Jentic handles SigV4 signing for you and returns the new certificate ARN, which you can then poll with DescribeCertificate.

Can I export the private key of an ACM certificate?

Only for certificates issued by ACM Private CA, via the ExportCertificate operation, which requires a passphrase to encrypt the exported key. Public ACM-issued certificates cannot have their private keys exported by design — they can only be deployed to integrated AWS services.

GET STARTED

Start building with AWS Certificate Manager API

Explore with Jentic
View OpenAPI Document