Armor Security Detections Overview API

Security detections overview operations

Business capability
Threat Detection & Response Management BC-620.30

Operations 1

GET /security-detections-overview Security Detections Overview #

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-security-detections-overview-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-security-detections-overview-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Incident Management Security Detections Overview API
  description: 'APIs for interacting with Armor products and services for incident management.


    Base URL: `https://security-detections.api.secure-prod.services/`

    '
  version: 1.0.0
servers:
- url: https://security-detections.api.secure-dev.services
  description: Development
- url: https://security-detections.api.secure-stage.services
  description: Staging
- url: https://security-detections.api.secure-prod.services
  description: Production
security:
- OAuth2: []
tags:
- name: Security Detections Overview
  description: Security detections overview operations
paths:
  /security-detections-overview:
    get:
      tags:
      - Security Detections Overview
      summary: Security Detections Overview
      description: Get security detections overview.
      operationId: getSecurityDetectionsOverview
      parameters:
      - $ref: '#/components/parameters/AccountContext'
      - name: filter
        in: query
        description: OData filter parameter.
        schema:
          type: string
      - name: search
        in: query
        description: Search parameter.
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SecurityDetectionOverview'
        '403':
          $ref: '#/components/responses/Forbidden'
components:
  schemas:
    Category:
      type: object
      properties:
        categoryName:
          type: string
          description: The category associated with the incident/detection.
        categoryCount:
          type: integer
          description: The number of incidents/detections for the category.
        categoryPercentage:
          type: string
          description: The percentage of incidents/detections for the category.
    Description:
      type: object
      properties:
        descriptionName:
          type: string
          description: The description associated with the incident/detection.
        descriptionCount:
          type: integer
          description: The number of incidents/detections for the description.
        descriptionPercentage:
          type: string
          description: The percentage of incidents/detections for the description.
    Message:
      type: object
      properties:
        message:
          type: string
          description: Error or informational message
    SeverityLevel:
      type: object
      properties:
        severityName:
          type: string
          description: The severity associated with the incident/detection.
        severityCount:
          type: integer
          description: The number of incidents/detections for the severity.
        severityPercentage:
          type: string
          description: The percentage of incidents/detections for the severity.
    SecurityDetectionOverview:
      type: object
      properties:
        accountId:
          type: integer
          description: Customer Account identifier.
        offenseId:
          type: integer
          description: The same value as the customer Account identifier.
        incidentCount:
          type: integer
          description: The number of incidents.
        detectionCount:
          type: integer
          description: The number of detections.
        severityLevels:
          type: array
          description: The severity levels for the incidents and detections.
          items:
            $ref: '#/components/schemas/SeverityLevel'
        categories:
          type: array
          description: The categories that are associated with the incidents and detections.
          items:
            $ref: '#/components/schemas/Category'
        descriptions:
          type: array
          description: The descriptions that are associated with the incidents and detections.
          items:
            $ref: '#/components/schemas/Description'
        lastUpdatedTime:
          type: string
          format: date-time
          description: The date and time the recent security overview report was updated.
  responses:
    Forbidden:
      description: Forbidden
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Message'
  parameters:
    AccountContext:
      name: x-account-context
      in: header
      required: true
      description: Account context identifier
      schema:
        type: integer
      example: 4
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.armor.com/auth/authorize
          scopes: {}