Vectra AI Events API

The Events API from Vectra AI — 3 operation(s) for events.

Operations 3

GET /events/entity_scoring Retrieve entity scoring events #
GET /events/detections Retrieve detection events #
GET /events/audits Retrieve audit log events #

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/vectranetworks-events-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

vectranetworks-events-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Vectra Platform Events API
  description: Comprehensive API documentation for Vectra's breach detection data, platform configuration, and health information.
  version: '3.3'
  contact:
    name: Vectra AI Support
    url: https://vectra.ai/support
servers:
- url: https://{vectra_portal_url}/api/v3.3
  description: Vectra Platform API Server
  variables:
    vectra_portal_url:
      default: platform.vectra.ai
security:
- oauth2: []
tags:
- name: Events
paths:
  /events/entity_scoring:
    get:
      summary: Retrieve entity scoring events
      operationId: getEntityScoringEvents
      tags:
      - Events
      parameters:
      - name: type
        in: query
        required: true
        schema:
          type: string
          enum:
          - account
          - host
        description: Specifies the type of entity scoring events (e.g., "account" or "host")
      - name: from
        in: query
        schema:
          type: integer
        description: Starting checkpoint for filtering scoring events
      - name: limit
        in: query
        schema:
          type: integer
          maximum: 1000
        description: Maximum number of events to return, with a default of 500 if unspecified
      - name: event_timestamp_gte
        in: query
        schema:
          type: string
          format: date-time
        description: Start date/time for scoring events (inclusive, ISO-8601 format)
      - name: event_timestamp_lte
        in: query
        schema:
          type: string
          format: date-time
        description: End date/time for scoring events (inclusive, ISO-8601 format)
      - name: include_score_decreases
        in: query
        schema:
          type: boolean
        description: Whether to include events that reflect score decreases
      responses:
        '200':
          description: A list of entity scoring events
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EntityScoring'
  /events/detections:
    get:
      summary: Retrieve detection events
      operationId: getDetectionEvents
      tags:
      - Events
      parameters:
      - name: from
        in: query
        schema:
          type: integer
        description: Starting checkpoint for filtering detection events
      - name: limit
        in: query
        schema:
          type: integer
          maximum: 1000
        description: Maximum number of detection events to return, default is 500
      - name: event_timestamp_gte
        in: query
        schema:
          type: string
          format: date-time
        description: Start date/time for detection events (inclusive, ISO-8601 format)
      - name: event_timestamp_lte
        in: query
        schema:
          type: string
          format: date-time
        description: End date/time for detection events (inclusive, ISO-8601 format)
      - name: entity_type
        in: query
        schema:
          type: string
          enum:
          - account
          - host
        description: Type of the related entity ("account" or "host")
      - name: detection_id
        in: query
        schema:
          type: integer
        description: Filter by a specific Detection ID
      - name: ordering
        in: query
        schema:
          type: string
          enum:
          - event_timestamp
          - -event_timestamp
        description: Ordering options, with default ascending by "event_timestamp"
      responses:
        '200':
          description: List of detection events
          content:
            application/json:
              schema:
                type: object
                properties:
                  events:
                    type: array
                    items:
                      type: object
                  next_checkpoint:
                    type: integer
                  remaining_count:
                    type: integer
  /events/audits:
    get:
      summary: Retrieve audit log events
      operationId: getAuditEvents
      tags:
      - Events
      parameters:
      - name: from
        in: query
        schema:
          type: integer
        description: Starting checkpoint for filtering
      - name: event_timestamp_gte
        in: query
        schema:
          type: string
          format: date-time
      - name: limit
        in: query
        schema:
          type: integer
        description: Maximum number of events to return
      responses:
        '200':
          description: Audit log events
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AuditLogEvent'
components:
  schemas:
    AuditLogEvent:
      type: object
      properties:
        id:
          type: integer
        user_id:
          type: integer
        username:
          type: string
        event_timestamp:
          type: string
          format: date-time
        message:
          type: string
        result_status:
          type: string
        event_action:
          type: string
    EntityScoring:
      type: object
      properties:
        entity_id:
          type: integer
        entity_type:
          type: string
        urgency_score:
          type: integer
        event_timestamp:
          type: string
          format: date-time
        name:
          type: string
        last_detection_id:
          type: integer
        severity:
          type: string
          enum:
          - Low
          - Medium
          - High
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://{vectra_portal_url}/oauth2/token
          scopes: {}