Densify Cloud Analysis API

The Cloud Analysis API from Densify — 3 operation(s) for cloud analysis.

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/densify-cloud-analysis-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 email required.

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

OpenAPI Specification

densify-cloud-analysis-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Densify / Kubex Public Cloud Authentication Cloud Analysis API
  description: 'REST API for the Densify (now Kubex) cloud and container optimization platform.

    Exposes optimization analysis triggers and recommendation retrieval for AWS, Azure,

    GCP, and Kubernetes environments so that resource right-sizing can be embedded into

    CI/CD pipelines and FinOps workflows.

    '
  version: 1.0.0
  contact:
    name: Kubex
    url: https://docs.kubex.ai/
servers:
- url: https://{instance}.densify.com/CIRBA/api/v2
  description: Densify / Kubex tenant instance
  variables:
    instance:
      default: customer
      description: Customer-specific subdomain
security:
- bearerAuth: []
tags:
- name: Cloud Analysis
paths:
  /analysis/aws:
    post:
      summary: Start AWS data collection / analysis
      operationId: startAwsAnalysis
      tags:
      - Cloud Analysis
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AnalysisRequest'
      responses:
        '200':
          description: Analysis started
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnalysisAccepted'
  /analysis/azure:
    post:
      summary: Start Azure data collection / analysis
      operationId: startAzureAnalysis
      tags:
      - Cloud Analysis
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AnalysisRequest'
      responses:
        '200':
          description: Analysis started
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnalysisAccepted'
  /analysis/gcp:
    post:
      summary: Start GCP data collection / analysis
      operationId: startGcpAnalysis
      tags:
      - Cloud Analysis
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AnalysisRequest'
      responses:
        '200':
          description: Analysis started
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnalysisAccepted'
components:
  schemas:
    AnalysisAccepted:
      type: object
      properties:
        analysisId:
          type: string
        status:
          type: string
    AnalysisRequest:
      type: object
      properties:
        accountNumber:
          type: string
        accessKey:
          type: string
        secretKey:
          type: string
        connection:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT