Anomaly Detection Multivariate API

Multivariate anomaly detection across correlated signals.

Operations 6

GET /multivariate/models List multivariate models #
POST /multivariate/models Train a multivariate model #
GET /multivariate/models/{modelId} Get model info #
DELETE /multivariate/models/{modelId} Delete a multivariate model #
POST /multivariate/models/{modelId}:detect-batch Run batch multivariate inference #
POST /multivariate/models/{modelId}:detect-last Run last-point multivariate inference (synchronous) #

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/anomaly-detection-multivariate-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

anomaly-detection-multivariate-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Azure AI Anomaly Detector ChangePoint Multivariate API
  version: '1.0'
  description: 'Managed REST API service from Azure AI Services that monitors and detects

    anomalies in time series data without requiring machine learning expertise.

    Supports univariate batch detection across an entire series, last-point

    detection for streaming, and change-point detection. The multivariate API

    enables anomaly detection across up to 300 correlated signals.


    NOTE: The service is being retired on 1 October 2026 in favor of Microsoft

    Fabric real-time intelligence.

    '
  contact:
    name: Azure Anomaly Detector Support
    url: https://learn.microsoft.com/en-us/azure/ai-services/anomaly-detector/
servers:
- url: https://{resource-name}.cognitiveservices.azure.com/anomalydetector/v1.0
  description: Univariate Anomaly Detector v1.0 endpoint
  variables:
    resource-name:
      default: my-resource
      description: Name of the Azure AI resource provisioned in the Azure portal.
- url: https://{resource-name}.cognitiveservices.azure.com/anomalydetector/v1.1
  description: Anomaly Detector v1.1 (includes multivariate)
  variables:
    resource-name:
      default: my-resource
      description: Name of the Azure AI resource provisioned in the Azure portal.
security:
- SubscriptionKey: []
tags:
- name: Multivariate
  description: Multivariate anomaly detection across correlated signals.
paths:
  /multivariate/models:
    get:
      tags:
      - Multivariate
      summary: List multivariate models
      operationId: listMultivariateModels
      parameters:
      - name: skip
        in: query
        schema:
          type: integer
          default: 0
      - name: top
        in: query
        schema:
          type: integer
          default: 5
      responses:
        '200':
          description: List of multivariate models.
    post:
      tags:
      - Multivariate
      summary: Train a multivariate model
      operationId: trainMultivariateModel
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ModelInfo'
      responses:
        '201':
          description: Model training accepted.
  /multivariate/models/{modelId}:
    get:
      tags:
      - Multivariate
      summary: Get model info
      operationId: getMultivariateModel
      parameters:
      - $ref: '#/components/parameters/ModelId'
      responses:
        '200':
          description: Model metadata and training state.
    delete:
      tags:
      - Multivariate
      summary: Delete a multivariate model
      operationId: deleteMultivariateModel
      parameters:
      - $ref: '#/components/parameters/ModelId'
      responses:
        '204':
          description: Model deleted.
  /multivariate/models/{modelId}:detect-batch:
    post:
      tags:
      - Multivariate
      summary: Run batch multivariate inference
      operationId: detectMultivariateBatchAnomaly
      parameters:
      - $ref: '#/components/parameters/ModelId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MultivariateBatchDetectionOptions'
      responses:
        '202':
          description: Inference accepted; poll the returned operation for results.
  /multivariate/models/{modelId}:detect-last:
    post:
      tags:
      - Multivariate
      summary: Run last-point multivariate inference (synchronous)
      operationId: detectMultivariateLastAnomaly
      parameters:
      - $ref: '#/components/parameters/ModelId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MultivariateLastDetectionOptions'
      responses:
        '200':
          description: Synchronous last-point multivariate detection result.
components:
  schemas:
    ModelInfo:
      type: object
      required:
      - dataSource
      - startTime
      - endTime
      properties:
        dataSource:
          type: string
          description: Source path to the time series data (e.g., Azure blob URL).
        dataSchema:
          type: string
          enum:
          - OneTable
          - MultiTable
        startTime:
          type: string
          format: date-time
        endTime:
          type: string
          format: date-time
        displayName:
          type: string
        slidingWindow:
          type: integer
        alignPolicy:
          type: object
    MultivariateBatchDetectionOptions:
      type: object
      required:
      - dataSource
      - startTime
      - endTime
      properties:
        dataSource:
          type: string
        topContributorCount:
          type: integer
        startTime:
          type: string
          format: date-time
        endTime:
          type: string
          format: date-time
    MultivariateLastDetectionOptions:
      type: object
      required:
      - variables
      properties:
        variables:
          type: array
          items:
            type: object
            properties:
              variable:
                type: string
              timestamps:
                type: array
                items:
                  type: string
                  format: date-time
              values:
                type: array
                items:
                  type: number
        topContributorCount:
          type: integer
  parameters:
    ModelId:
      name: modelId
      in: path
      required: true
      schema:
        type: string
  securitySchemes:
    SubscriptionKey:
      type: apiKey
      in: header
      name: Ocp-Apim-Subscription-Key
      description: Azure Cognitive Services subscription key for the Anomaly Detector resource.