Aikido Security Clouds API

The Clouds API from Aikido Security — 7 operation(s) for clouds.

Operations 7

GET /clouds List connected clouds #
DELETE /clouds/{id} Remove a cloud #
POST /clouds/aws Connect AWS cloud #
POST /clouds/azure Connect Azure cloud #
POST /clouds/gcp Connect GCP cloud #
POST /clouds/kubernetes Create Kubernetes cloud connection #
POST /clouds/assets List cloud assets #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/aikido-security-clouds-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

aikido-security-clouds-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Aikido Security Public REST Clouds API
  version: '1.0'
  description: 'Best-effort OpenAPI 3.1 representation of the Aikido Security public REST API

    derived from https://apidocs.aikido.dev/ (llms.txt index and reference pages).

    Aikido is an all-in-one application security platform exposing endpoints for

    issues, code repositories, containers, clouds, domains, compliance, teams,

    users, webhooks, Zen app protection, and more.

    '
  contact:
    name: Aikido Security
    url: https://apidocs.aikido.dev/
servers:
- url: https://app.aikido.dev/api/public/v1
  description: EU (default) region
- url: https://app.us.aikido.dev/api/public/v1
  description: US region
- url: https://app.me.aikido.dev/api/public/v1
  description: Middle East region
security:
- BearerAuth: []
tags:
- name: Clouds
paths:
  /clouds:
    get:
      tags:
      - Clouds
      summary: List connected clouds
      operationId: listClouds
      responses:
        '200':
          description: OK
  /clouds/{id}:
    delete:
      tags:
      - Clouds
      summary: Remove a cloud
      operationId: removeCloud
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '204':
          description: Removed
  /clouds/aws:
    post:
      tags:
      - Clouds
      summary: Connect AWS cloud
      operationId: connectAwsCloud
      responses:
        '201':
          description: Connected
  /clouds/azure:
    post:
      tags:
      - Clouds
      summary: Connect Azure cloud
      operationId: connectAzureCloud
      responses:
        '201':
          description: Connected
  /clouds/gcp:
    post:
      tags:
      - Clouds
      summary: Connect GCP cloud
      operationId: connectGcpCloud
      responses:
        '201':
          description: Connected
  /clouds/kubernetes:
    post:
      tags:
      - Clouds
      summary: Create Kubernetes cloud connection
      operationId: createKubernetesCloud
      responses:
        '201':
          description: Connected
  /clouds/assets:
    post:
      tags:
      - Clouds
      summary: List cloud assets
      operationId: listCloudAssets
      responses:
        '200':
          description: OK
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Bearer access token obtained via POST https://app.aikido.dev/api/oauth/token

        with grant_type=client_credentials and Basic auth (client_id:client_secret).

        '