Armor VS Reports API

Vulnerability scan reports

Business capability
Vulnerability Management BC-620.40

Operations 4

PUT /vulnerability-scan/vulnerability-import-scan Generate new vulnerability report #
GET /vulnerability-scan/summary-reports List vulnerability scan summary reports #
POST /vulnerability-scan/generate-report Generate detailed vulnerabilities report #
GET /vulnerability-scan/get-export-data Get detailed vulnerabilities report for CSV export #

Documentation

Specifications

Other Resources

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/armor-vs-reports-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

armor-vs-reports-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Armor Compliance VS Reports API
  description: 'Armor Compliance API provides endpoints for Cloud Security Posture Management (CSPM)

    and Vulnerability Scanning (VS) services.

    '
  version: 1.0.0
  contact:
    name: Armor Support
    url: https://www.armor.com/support
servers:
- url: https://compliance.api.secure-prod.services
  description: Production server
security:
- OAuth2: []
tags:
- name: VS Reports
  description: Vulnerability scan reports
paths:
  /vulnerability-scan/vulnerability-import-scan:
    put:
      tags:
      - VS Reports
      summary: Generate new vulnerability report
      operationId: generateVulnerabilityReport
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenerateReportRequest'
      responses:
        '202':
          description: Accepted
        '403':
          description: Forbidden
  /vulnerability-scan/summary-reports:
    get:
      tags:
      - VS Reports
      summary: List vulnerability scan summary reports
      operationId: listVsSummaryReports
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SummaryReport'
        '403':
          description: Forbidden
  /vulnerability-scan/generate-report:
    post:
      tags:
      - VS Reports
      summary: Generate detailed vulnerabilities report
      operationId: generateDetailedVsReport
      responses:
        '200':
          description: Successful response
        '403':
          description: Forbidden
  /vulnerability-scan/get-export-data:
    get:
      tags:
      - VS Reports
      summary: Get detailed vulnerabilities report for CSV export
      operationId: getVsExportData
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DetailedVSReportForExport'
        '403':
          description: Forbidden
components:
  schemas:
    SummaryReport:
      type: object
      properties:
        reportId:
          type: string
          description: Report ID
        reportDate:
          type: string
          format: date-time
          description: Report date
        totalVulnerabilities:
          type: integer
          description: Total vulnerabilities
        criticalCount:
          type: integer
          description: Critical count
        highCount:
          type: integer
          description: High count
        mediumCount:
          type: integer
          description: Medium count
        lowCount:
          type: integer
          description: Low count
        informationalCount:
          type: integer
          description: Informational count
        assetsScanned:
          type: integer
          description: Assets scanned count
    DetailedVSReportForExport:
      type: object
      properties:
        reportDate:
          type: string
          format: date-time
          description: Report date
        data:
          type: array
          items:
            type: object
            additionalProperties: true
          description: Export data rows
    GenerateReportRequest:
      type: object
      properties:
        reportType:
          type: string
          description: Report type
        format:
          type: string
          description: Report format
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://auth.armor.com/authorize
          tokenUrl: https://auth.armor.com/token
          scopes: {}