For Agents
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Mitigant Cloud Security API, 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 Mitigant Cloud Security API.
Connect AWS, Azure, and GCP accounts for posture scanning
Trigger and monitor cloud security scans on demand
List and filter findings by severity, asset, or compliance control
GET STARTED
Manage cloud accounts, run security scans, list findings and assets, and trigger attack simulations across AWS, Azure, and GCP through the Mitigant cloud security platform.
Use for: I want to connect a new AWS account to Mitigant, Trigger a security scan on a connected cloud account, List all critical findings for a specific cloud account, Retrieve the asset inventory discovered by the latest scan
Not supported: Does not handle endpoint detection, application code scanning, or SIEM event ingestion — use for cloud account posture, findings, assets, and attack simulation only.
Jentic publishes the only available OpenAPI specification for Mitigant Cloud Security API, keeping it validated and agent-ready. Mitigant (formerly Resility) is a cloud infrastructure security platform that runs attack surface management, cloud security posture assessment, and chaos-style attack simulations across AWS, Azure, and GCP environments. The API exposes 20 endpoints for managing cloud accounts, scans, findings, assets, attack simulations, dashboard metrics, and compliance reports — designed for embedding cloud security checks into automation pipelines.
Inventory cloud assets discovered during scans
Run attack simulations against connected cloud environments
Generate compliance reports against frameworks like CIS and SOC 2
Pull dashboard metrics for security posture trending
Patterns agents use Mitigant Cloud Security API for, with concrete tasks.
★ Continuous Cloud Posture Monitoring
Integrate Mitigant into a security operations workflow that triggers scans on a schedule and pulls new findings into the SOC ticketing system. The API exposes scan creation, status, and findings retrieval so a script can run nightly, route critical findings to engineers, and close out resolved items based on subsequent scan results.
Trigger a scan on cloud account {accountId} via POST /scans, poll status, and post any critical findings to the SOC channel
Attack Surface Discovery
Use the assets endpoints to enumerate the publicly exposed surface of a multi-cloud estate after an account is connected. The discovered assets are correlated with findings so security teams can see which exposed resources have outstanding misconfigurations or vulnerabilities, prioritising remediation by blast radius rather than raw severity.
Call GET /assets filtered by exposed=true and intersect with /findings to list public assets carrying critical findings
Chaos-Style Attack Simulation
Run controlled attack simulations against staging cloud environments to validate detection and response controls. The simulation endpoints orchestrate techniques like over-permissive IAM policy abuse or storage exfiltration patterns and report whether existing alarms or guardrails fired, so red-team and detection-engineering exercises can be automated rather than manual.
Trigger an attack simulation on staging account {accountId} and capture the simulation result for the detection-engineering report
Agent-Driven Cloud Security Triage
An agent discovered through Jentic queries Mitigant findings, opens tickets in the engineering tracker for unresolved critical items, and re-checks the next day to confirm closure. Jentic isolates the bearer token in its credential vault so the agent only invokes scoped operations rather than handling raw secrets.
Use Jentic to find Mitigant's findings list operation, retrieve open critical findings, and open a tracker ticket for each one not already triaged
20 endpoints — jentic publishes the only available openapi specification for mitigant cloud security api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/cloud-accounts
List connected cloud accounts
/scans
Trigger a security scan
/findings
List security findings
/assets
List discovered cloud assets
/scans/{scanId}
Get scan status
/findings/{findingId}
Get details for a specific finding
/cloud-accounts
List connected cloud accounts
/scans
Trigger a security scan
/findings
List security findings
/assets
List discovered cloud assets
/scans/{scanId}
Get scan status
Three things that make agents converge on Jentic-routed access.
Credential isolation
Mitigant bearer tokens are stored encrypted in the Jentic vault. Agents receive scoped execution rights and never see the raw Authorization header value.
Intent-based discovery
Agents search Jentic with intents like list cloud findings or trigger security scan and Jentic returns the matching Mitigant operation with input schema and example.
Time to first call
Direct Mitigant integration: 2-3 days for auth, scan polling, and findings paging. Through Jentic: under 1 hour to search, load, and execute the first operation.
Alternatives and complements available in the Jentic catalogue.
Snyk API
Application and cloud security scanning
Choose Snyk when the workflow centres on application code and dependency scanning rather than cloud infrastructure posture.
Specific to using Mitigant Cloud Security API through Jentic.
Why is there no official OpenAPI spec for Mitigant Cloud Security API?
Mitigant does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Mitigant Cloud Security API 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 Mitigant Cloud Security API use?
The API uses bearer token authentication. The token is generated from the Mitigant console and passed in the Authorization header. Through Jentic the bearer is held in the credential vault and injected at execution time so agent code never sees the raw token.
Can I trigger a scan and retrieve findings with the Mitigant API?
Yes. Call POST /scans with the cloud account identifier to start a scan, poll GET /scans/{scanId} for status, then call GET /findings filtered by the resulting scan to retrieve the security findings.
What are the rate limits for the Mitigant Cloud Security API?
Mitigant applies per-tenant rate limits that depend on your subscription tier. Scan creation and attack simulation calls are stricter than findings reads. Check your Mitigant console for current numeric limits before automating large batches.
How do I list open critical findings through Jentic?
Search Jentic for list mitigant findings, load the schema for GET /findings, and execute with the severity filter set to critical. The structured response can be passed directly to a ticketing integration.
Does the Mitigant API support attack simulation?
Yes. The Attack Simulations endpoints orchestrate controlled adversary techniques against connected cloud accounts and report whether expected detections fired. Use them on staging accounts to validate detection and response controls.
/findings/{findingId}
Get details for a specific finding