Moogsoft Similar Incidents API

API for the similar incidents service.

Operations 3

PUT /v1/similar-incidents-settings Modifies the attributes used for comparing incidents #
GET /v1/similar-incidents-settings Gets settings for similar incidents #
POST /v1/incident-similarity Returns the set of similar incidents for a given target incident. #

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/similar-incidents"
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

moogsoft-similar-incidents-openapi.yaml Raw ↑
openapi: 3.1.0
info:
  version: 1.0.0
  title: Similar Incidents Service API
  description: API for the similar incidents service.
  termsOfService: 'https://www.moogsoft.com/legal-information/express-terms-conditions/'
  contact:
    name: API Support
    url: 'https://docs.moogsoft.com/en/moogsoft-apis.html'
    email: support@moogsoft.com
  license:
    url: 'https://www.moogsoft.com/legal-information'
    name: Apex AIOps Incident Management Proprietary
servers:
  - url: 'https://api.moogsoft.ai'
  - url: 'https://api.dev.moogsoft.cloud'
paths:
  /v1/similar-incidents-settings:
    put:
      tags:
        - similar-incidents-settings
      summary: Modifies the attributes used for comparing incidents
      description: Modifies the sets of attributes used for comparing 2 incidents.
      operationId: putSettings
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SimilaritySettingsDto'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoogResponseSimilaritySettingsDto'
        '400':
          description: Bad Request
        '404':
          description: Requested object(s) not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoogFailureResponse'
        4XX:
          description: Authorization or other error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoogFailureResponse'
        5XX:
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoogErrorResponse'
      security:
        - ApiKeyAuth: []
      servers:
        - url: 'https://api.moogsoft.ai'
        - url: 'https://api.dev.moogsoft.cloud'
      x-permissions:
        value:
          - 'incident-config:edit'
        description: Required user permissions for this endpoint
    get:
      tags:
        - similar-incidents-settings
      summary: Gets settings for similar incidents
      description: Gets settings such as what key to use for similarity service.
      operationId: getSettings
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoogResponseSimilaritySettingsDto'
        '400':
          description: Invalid parameters or data validation violation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoogFailureResponse'
        '404':
          description: Requested object(s) not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoogFailureResponse'
        4XX:
          description: Authorization or other error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoogFailureResponse'
        5XX:
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoogErrorResponse'
      security:
        - ApiKeyAuth: []
      servers:
        - url: 'https://api.moogsoft.ai'
        - url: 'https://api.dev.moogsoft.cloud'
      x-permissions:
        value:
          - 'incident-config:view'
        description: Required user permissions for this endpoint
  /v1/incident-similarity:
    post:
      tags:
        - incident-similarity
      summary: Returns the set of similar incidents for a given target incident.
      description: Finds and returns the set of incidents similar to a given target incident ID.
      operationId: getIncidentSimilarity
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IncidentSimilarityRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoogResponseIncidentSimilarityResult'
        '400':
          description: Bad Request
        '404':
          description: Requested object(s) not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoogFailureResponse'
        4XX:
          description: Authorization or other error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoogFailureResponse'
        5XX:
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoogErrorResponse'
      security:
        - ApiKeyAuth: []
      servers:
        - url: 'https://api.moogsoft.ai'
        - url: 'https://api.dev.moogsoft.cloud'
      x-permissions:
        value:
          - 'incidents:view'
        description: Required user permissions for this endpoint
tags:
  - name: incident-similarity
  - name: similar-incidents
    description: Find incidents that are classed as 'similar' to a given incident ID.
  - name: similar-incidents-settings
    description: 'Configure similar incident settings such as dedupe key, comparison key, custom'
externalDocs:
  url: 'https://docs.moogsoft.com/en/moogsoft-apis.html'
  description: Find out more about Apex AIOps Incident Management
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      description: API Key for accessing Similar Incidents Service API
      name: apiKey
      in: header
  schemas:
    SimilaritySettingsDto:
      type: object
      title: Similarity Settings Dto
      properties:
        similarity_key_type:
          $ref: '#/components/schemas/SimilarityKeyType'
        key_fields:
          type: array
          minItems: 1
          items:
            type: string
      required:
        - similarity_key_type
        - key_fields
    SimilarityKeyType:
      type: string
      enum:
        - dedupe
        - custom
      title: Similarity Key Type
    MoogResponseSimilaritySettingsDto:
      type: object
      title: Moog Response Similarity Settings Dto
      description: Similar Incidents Service API SimilaritySettingsDto response body
      properties:
        status:
          type: string
          description: Success status indicator (always "success")
          examples:
            - success
        data:
          $ref: '#/components/schemas/SimilaritySettingsDto'
      required:
        - status
        - data
    MoogFailureResponse:
      type: object
      description: Similar Incidents Service API failure response body
      properties:
        status:
          type: string
          description: Failure status indicator (always "failure")
          examples:
            - failure
        message:
          type: string
        additional:
          type: array
          items:
            type: string
      required:
        - status
        - message
    MoogErrorResponse:
      type: object
      description: Similar Incidents Service API error response body
      properties:
        status:
          type: string
          description: Error status indicator (always "error")
          examples:
            - error
        message:
          type: string
        additional:
          type: array
          items:
            type: string
      required:
        - status
        - message
    IncidentSimilarityRequest:
      type: object
      title: Incident Similarity Request
      description: A request to get the similarity between 2 incidents
      properties:
        refIncidentID:
          type: integer
          format: int64
          exclusiveMinimum: 0
        cmpIncidentID:
          type: integer
          format: int64
          exclusiveMinimum: 0
      required:
        - refIncidentID
        - cmpIncidentID
    MoogResponseIncidentSimilarityResult:
      type: object
      title: Moog Response Incident Similarity Result
      description: Similar Incidents Service API IncidentSimilarityResult response body
      properties:
        status:
          type: string
          description: Success status indicator (always "success")
          examples:
            - success
        data:
          $ref: '#/components/schemas/IncidentSimilarityResult'
      required:
        - status
        - data
    IncidentSimilarityResult:
      type: object
      title: Incident Similarity Result
      description: Inference result from similar-incidents.
      properties:
        result:
          $ref: '#/components/schemas/IncidentSimilarityDto'
    IncidentSimilarityDto:
      type: object
      title: Incident Similarity Dto
      properties:
        similarity:
          type: number
          format: double
security:
  - ApiKeyAuth: []