Vantage KubernetesEfficiencyReports API

Operations about KubernetesEfficiencyReports

Operations 6

GET /kubernetes_efficiency_reports Get all Kubernetes efficiency reports #
POST /kubernetes_efficiency_reports Create Kubernetes efficiency report #
POST /kubernetes_efficiency_reports/data_exports Generate Kubernetes efficiency data export #
GET /kubernetes_efficiency_reports/{kubernetes_efficiency_report_token} Get Kubernetes efficiency report by token #
PUT /kubernetes_efficiency_reports/{kubernetes_efficiency_report_token} Update Kubernetes efficiency report #
DELETE /kubernetes_efficiency_reports/{kubernetes_efficiency_report_token} Delete Kubernetes efficiency report #

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/vantage-sh-kubernetesefficiencyreports-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

vantage-sh-kubernetesefficiencyreports-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Vantage AccessGrants Kubernetes Efficiency Reports API
  description: The Vantage API provides programmatic access to the Vantage cloud cost management and FinOps platform. It covers cost reporting and querying (Costs, Cost Reports, forecasts, unit costs), cost visibility and optimization (Resources, Recommendations, Financial Commitments, Kubernetes efficiency), governance and alerting (Budgets, Budget Alerts, Cost Alerts, Anomaly Alerts and Notifications), organization (Segments, Folders, Saved Filters, Dashboards, Workspaces, Teams), and billing (Billing Profiles, Billing Rules, Invoices). The API spans AWS, Azure, GCP, Kubernetes, Datadog, Snowflake, MongoDB, and other supported providers. Base URL https://api.vantage.sh/v2. Authentication is via OAuth2 (client credentials / bearer token) with read and write scopes.
  termsOfService: https://www.vantage.sh/terms-of-use
  contact:
    name: Vantage Support
    url: https://www.vantage.sh
    email: support@vantage.sh
  version: 2.0.0
servers:
- url: https://api.vantage.sh/v2
security:
- oauth2:
  - read
tags:
- name: KubernetesEfficiencyReports
  description: Operations about KubernetesEfficiencyReports
paths:
  /kubernetes_efficiency_reports:
    get:
      tags:
      - KubernetesEfficiencyReports
      summary: Get all Kubernetes efficiency reports
      description: Return all KubernetesEfficiencyReports.
      operationId: getKubernetesEfficiencyReports
      parameters:
      - name: page
        in: query
        description: The page of results to return.
        schema:
          type: integer
          format: int32
      - name: limit
        in: query
        description: The amount of results to return. The maximum is 1000.
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KubernetesEfficiencyReports'
              example:
                links:
                  self: https://api.vantage.sh/v2/kubernetes_efficiency_reports
                  first: https://api.vantage.sh/v2/kubernetes_efficiency_reports?page=1
                  next: null
                  last: https://api.vantage.sh/v2/kubernetes_efficiency_reports?page=1
                  prev: null
                kubernetes_efficiency_reports:
                - token: kbnts_eff_rprt_f8d610afacc7e6c6
                  title: Cluster Idle Costs
                  default: false
                  created_at: '2024-10-25T21:20:43Z'
                  workspace_token: wrkspc_64768b29bebf9dfe
                  user_token: null
                  start_date: '2024-10-01'
                  end_date: '2024-10-31'
                  date_interval: this_month
                  date_bucket: day
                  aggregated_by: idle_cost
                  groupings: cluster_id
      security:
      - oauth2:
        - read
    post:
      tags:
      - KubernetesEfficiencyReports
      summary: Create Kubernetes efficiency report
      description: Create a KubernetesEfficiencyReport.
      operationId: createKubernetesEfficiencyReport
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/createKubernetesEfficiencyReport'
        required: true
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KubernetesEfficiencyReport'
              example:
                token: kbnts_eff_rprt_b5c0eedc83b259be
                title: title
                default: false
                created_at: '2024-11-05T20:32:30Z'
                workspace_token: wrkspc_71e915f9671fa270
                user_token: null
                start_date: '2024-11-01'
                end_date: '2024-11-30'
                date_interval: this_month
                date_bucket: day
                aggregated_by: idle_cost
                groupings: cluster_id
                filter: kubernetes.cluster_id   =   'cluster-1'
        '400':
          description: BadRequest
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
        '422':
          description: UnprocessableEntity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
      security:
      - oauth2:
        - write
      x-codegen-request-body-name: createKubernetesEfficiencyReport
  /kubernetes_efficiency_reports/data_exports:
    post:
      tags:
      - KubernetesEfficiencyReports
      summary: Generate Kubernetes efficiency data export
      description: Generate a DataExport of Kubernetes efficiency data.
      operationId: createKubernetesEfficiencyReportExport
      parameters:
      - name: groupings
        in: query
        description: 'Group the results by specific field(s). Valid groupings: cluster_id, namespace, region, labeled, category, pod, label, label:<label_name>.'
        style: form
        explode: false
        schema:
          type: array
          items:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/createKubernetesEfficiencyReportExport'
        required: true
      responses:
        '202':
          description: The data export has been queued and will be available at the location specified in the Location header.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataExport'
        '400':
          description: BadRequest
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
        '404':
          description: NotFound
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
      security:
      - oauth2:
        - read
      x-codegen-request-body-name: createKubernetesEfficiencyReportExport
  /kubernetes_efficiency_reports/{kubernetes_efficiency_report_token}:
    get:
      tags:
      - KubernetesEfficiencyReports
      summary: Get Kubernetes efficiency report by token
      description: Return a KubernetesEfficiencyReport.
      operationId: getKubernetesEfficiencyReport
      parameters:
      - name: kubernetes_efficiency_report_token
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KubernetesEfficiencyReport'
              example:
                token: kbnts_eff_rprt_8f8b9caaffee230b
                title: +1 disrupt.
                default: false
                created_at: '2024-10-25T21:20:43Z'
                workspace_token: wrkspc_d6ab5f555d9bd0b5
                user_token: null
                start_date: '2024-10-01'
                end_date: '2024-10-31'
                date_interval: this_month
                date_bucket: day
                aggregated_by: idle_cost
                groupings: cluster_id
        '404':
          description: NotFound
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
      security:
      - oauth2:
        - read
    put:
      tags:
      - KubernetesEfficiencyReports
      summary: Update Kubernetes efficiency report
      description: Update a KubernetesEfficiencyReport.
      operationId: updateKubernetesEfficiencyReport
      parameters:
      - name: kubernetes_efficiency_report_token
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/updateKubernetesEfficiencyReport'
        required: true
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KubernetesEfficiencyReport'
              example:
                token: kbnts_eff_rprt_f9ee5fadf5e1a6e6
                title: new title
                default: false
                created_at: '2024-10-25T21:20:42Z'
                workspace_token: wrkspc_303c3228e22ccb6f
                user_token: null
                start_date: '2024-10-01'
                end_date: '2024-10-31'
                date_interval: this_month
                date_bucket: day
                aggregated_by: idle_cost
                groupings: cluster_id
        '400':
          description: BadRequest
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
        '422':
          description: UnprocessableEntity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
      security:
      - oauth2:
        - write
      x-codegen-request-body-name: updateKubernetesEfficiencyReport
    delete:
      tags:
      - KubernetesEfficiencyReports
      summary: Delete Kubernetes efficiency report
      description: Delete a KubernetesEfficiencyReport.
      operationId: deleteKubernetesEfficiencyReport
      parameters:
      - name: kubernetes_efficiency_report_token
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KubernetesEfficiencyReport'
        '404':
          description: NotFound
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
      security:
      - oauth2:
        - write
components:
  schemas:
    Errors:
      required:
      - errors
      type: object
      properties:
        links:
          $ref: '#/components/schemas/Links'
        errors:
          type: array
          items:
            type: string
      description: Errors model
    Links:
      type: object
      properties:
        self:
          type:
          - string
          - 'null'
          description: The URL of the current page of results.
        first:
          type:
          - string
          - 'null'
          description: The URL of the first page of results.
        next:
          type:
          - string
          - 'null'
          description: The URL of the next page of results, if one exists.
        last:
          type:
          - string
          - 'null'
          description: The URL of the last page of results, if one exists.
        prev:
          type:
          - string
          - 'null'
          description: The URL of the previous page of results, if one exists.
    createKubernetesEfficiencyReportExport:
      type: object
      properties:
        kubernetes_efficiency_report_token:
          type: string
          description: The KubernetesEfficiencyReport token. If not provided, the default report for the workspace will be used.
        filter:
          type: string
          description: The filter query language to apply to the KubernetesEfficiencyReport. Additional documentation available at https://docs.vantage.sh/vql.
        workspace_token:
          type: string
          description: The token of the Workspace to export data from. Ignored if 'kubernetes_efficiency_report_token' is set. Required if the API token is associated with multiple Workspaces.
        start_date:
          type: string
          description: First date you would like to filter data from. ISO 8601 formatted.
        end_date:
          type: string
          description: Last date you would like to filter data to. ISO 8601 formatted.
        date_bin:
          type: string
          description: The date bin of the data. Defaults to the report's default or day.
          enum:
          - day
          - week
          - month
          - quarter
      description: Generate a DataExport of Kubernetes efficiency data.
    createKubernetesEfficiencyReport:
      required:
      - title
      - workspace_token
      type: object
      properties:
        workspace_token:
          type: string
          description: The Workspace in which the KubernetesEfficiencyReport will be created.
        title:
          type: string
          description: The title of the KubernetesEfficiencyReport.
        filter:
          type: string
          description: The filter query language to apply to the KubernetesEfficiencyReport. Additional documentation available at https://docs.vantage.sh/vql.
        start_date:
          type: string
          description: The start date of the KubernetesEfficiencyReport. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
          format: date
        end_date:
          type: string
          description: The end date of the KubernetesEfficiencyReport. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
          format: date
        date_interval:
          type: string
          description: The date interval of the KubernetesEfficiencyReport. Incompatible with 'start_date' and 'end_date' parameters. Defaults to 'this_month' if start_date and end_date are not provided.
          enum:
          - this_month
          - last_7_days
          - last_30_days
          - last_month
          - last_3_months
          - last_6_months
          - custom
          - last_12_months
          - last_24_months
          - last_36_months
          - next_month
          - next_3_months
          - next_6_months
          - next_12_months
          - year_to_date
          - last_3_days
          - last_14_days
        aggregated_by:
          type: string
          description: The column by which the costs are aggregated.
          enum:
          - idle_cost
          - amount
          - cost_efficiency
        date_bucket:
          type: string
          description: The date bucket of the KubernetesEfficiencyReport.
          enum:
          - day
          - week
          - month
          - quarter
        groupings:
          type: array
          description: 'Grouping values for aggregating costs on the KubernetesEfficiencyReport. Valid groupings: cluster_id, namespace, region, labeled, category, pod, label, label:<label_name>.'
          items:
            type: string
      description: Create a KubernetesEfficiencyReport.
    DataExport:
      required:
      - attributes
      - created_at
      - export_type
      - manifest
      - status
      - token
      type: object
      properties:
        token:
          type: string
          example: dta_xprt_abcd1234567890
        status:
          type: string
          example: pending
        created_at:
          type: string
          example: '2025-03-20T12:00:00Z'
        export_type:
          type: string
          example: cost_report
        manifest:
          $ref: '#/components/schemas/DataExportManifest'
        attributes:
          type: object
          properties: {}
      description: DataExport model
    updateKubernetesEfficiencyReport:
      type: object
      properties:
        title:
          type: string
          description: The title of the KubernetesEfficiencyReport.
        filter:
          type: string
          description: The filter query language to apply to the KubernetesEfficiencyReport. Additional documentation available at https://docs.vantage.sh/vql.
        start_date:
          type: string
          description: The start date of the KubernetesEfficiencyReport. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
          format: date
        end_date:
          type: string
          description: The end date of the KubernetesEfficiencyReport. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
          format: date
        date_interval:
          type: string
          description: The date interval of the KubernetesEfficiencyReport. Incompatible with 'start_date' and 'end_date' parameters. Defaults to 'this_month' if start_date and end_date are not provided.
          enum:
          - this_month
          - last_7_days
          - last_30_days
          - last_month
          - last_3_months
          - last_6_months
          - custom
          - last_12_months
          - last_24_months
          - last_36_months
          - next_month
          - next_3_months
          - next_6_months
          - next_12_months
          - year_to_date
          - last_3_days
          - last_14_days
        aggregated_by:
          type: string
          description: The column by which the costs are aggregated.
          enum:
          - idle_cost
          - amount
          - cost_efficiency
        date_bucket:
          type: string
          description: The date bucket of the KubernetesEfficiencyReport.
          enum:
          - day
          - week
          - month
          - quarter
        groupings:
          type: array
          description: 'Grouping values for aggregating costs on the KubernetesEfficiencyReport. Valid groupings: cluster_id, namespace, region, labeled, category, pod, label, label:<label_name>.'
          items:
            type: string
      description: Update a KubernetesEfficiencyReport.
    DataExportManifest:
      required:
      - completed_at
      - files
      - valid_until
      type: object
      properties:
        files:
          type: array
          items:
            type: string
            example: ''
        completed_at:
          type:
          - string
          - 'null'
          example: '2025-03-20T12:00:00Z'
        valid_until:
          type:
          - string
          - 'null'
          example: '2025-03-20T12:00:00Z'
    KubernetesEfficiencyReport:
      required:
      - aggregated_by
      - created_at
      - date_bucket
      - date_interval
      - default
      - end_date
      - filter
      - groupings
      - start_date
      - title
      - token
      - workspace_token
      type: object
      properties:
        token:
          type: string
        title:
          type: string
          description: The title of the KubernetesEfficiencyReport.
          example: Acme123 Kubernetes Efficiency Metrics
        default:
          type: boolean
          description: Indicates whether the KubernetesEfficiencyReport is the default report.
        created_at:
          type: string
          description: The date and time, in UTC, the report was created. ISO 8601 Formatted.
          example: '2024-03-19T00:00:00Z'
        workspace_token:
          type: string
          description: The token for the Workspace the KubernetesEfficiencyReport is a part of.
        user_token:
          type:
          - string
          - 'null'
          description: The token for the User who created this KubernetesEfficiencyReport.
        start_date:
          type:
          - string
          - 'null'
          description: The start date for the KubernetesEfficiencyReport. Only set for custom date ranges. ISO 8601 Formatted.
          example: '2024-03-01'
        end_date:
          type:
          - string
          - 'null'
          description: The end date for the KubernetesEfficiencyReport. Only set for custom date ranges. ISO 8601 Formatted.
          example: '2024-03-20'
        date_interval:
          type:
          - string
          - 'null'
          description: The date range for the KubernetesEfficiencyReport. Only present if a custom date range is not specified.
          example: last_month
        date_bucket:
          type: string
          description: 'How costs are grouped and displayed in the KubernetesEfficiencyReport. Possible values: day, week, month.'
          example: month
        aggregated_by:
          type: string
          description: 'How costs are aggregated by. Possible values: idle_cost, amount, cost_efficiency.'
        groupings:
          type:
          - string
          - 'null'
          description: 'Grouping values for aggregating costs on the KubernetesEfficiencyReport. Valid groupings: cluster_id, namespace, region, labeled, category, pod, label, label:<label_name>.'
          example: cluster_id, namespace
        filter:
          type:
          - string
          - 'null'
          description: The filter applied to the KubernetesEfficiencyReport. Additional documentation available at https://docs.vantage.sh/vql.
      description: KubernetesEfficiencyReport model
    KubernetesEfficiencyReports:
      required:
      - kubernetes_efficiency_reports
      type: object
      properties:
        links:
          $ref: '#/components/schemas/Links'
        kubernetes_efficiency_reports:
          type: array
          items:
            $ref: '#/components/schemas/KubernetesEfficiencyReport'
      description: KubernetesEfficiencyReports model
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://console.vantage.sh/account/profile
          scopes:
            read: Grants read access
            write: Grants write access
x-original-swagger-version: '2.0'