Sentry Seer API

AI-powered issue analysis and fix suggestions

Operations 3

GET /organizations/{organization_id_or_slug}/seer/models/ Sentry List Seer AI models #
POST /issues/{issue_id}/seer/autofix/ Sentry Start Seer issue fix #
GET /issues/{issue_id}/seer/autofix/ Sentry Retrieve Seer issue fix state #

Documentation

Specifications

Schemas & Data

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/sentry-system-seer-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

sentry-system-seer-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sentry Alerts Seer API
  description: The Alerts API provides endpoints for managing alert rules in Sentry, including creating, retrieving, updating, and deleting metric alert rules and issue alert rules, as well as managing spike protection notification actions.
  version: 0.0.1
  contact:
    name: Sentry Support
    url: https://sentry.io/support/
    email: support@sentry.io
servers:
- url: https://sentry.io/api/0
  description: Sentry Production API
security:
- BearerAuth: []
tags:
- name: Seer
  description: AI-powered issue analysis and fix suggestions
paths:
  /organizations/{organization_id_or_slug}/seer/models/:
    get:
      operationId: listSeerModels
      summary: Sentry List Seer AI models
      description: Returns a list of available AI models for Seer issue analysis.
      tags:
      - Seer
      parameters:
      - $ref: '#/components/parameters/OrganizationIdOrSlug'
      responses:
        '200':
          description: A list of available AI models.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SeerModel'
        '401':
          description: Unauthorized.
        '403':
          description: Forbidden.
  /issues/{issue_id}/seer/autofix/:
    post:
      operationId: startSeerIssueFix
      summary: Sentry Start Seer issue fix
      description: Initiates an AI-powered issue fix analysis using Seer. The fix runs asynchronously and its state can be polled.
      tags:
      - Seer
      parameters:
      - $ref: '#/components/parameters/IssueId'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                instruction:
                  type: string
                  description: Optional instruction to guide the AI fix.
      responses:
        '202':
          description: Fix analysis started.
          content:
            application/json:
              schema:
                type: object
                properties:
                  autofix:
                    $ref: '#/components/schemas/SeerAutofixState'
        '400':
          description: Bad request.
        '401':
          description: Unauthorized.
        '404':
          description: Issue not found.
    get:
      operationId: retrieveSeerIssueFixState
      summary: Sentry Retrieve Seer issue fix state
      description: Returns the current state of a Seer issue fix analysis.
      tags:
      - Seer
      parameters:
      - $ref: '#/components/parameters/IssueId'
      responses:
        '200':
          description: The current state of the fix analysis.
          content:
            application/json:
              schema:
                type: object
                properties:
                  autofix:
                    $ref: '#/components/schemas/SeerAutofixState'
        '401':
          description: Unauthorized.
        '404':
          description: Issue or fix state not found.
components:
  schemas:
    SeerModel:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        isAvailable:
          type: boolean
      required:
      - id
      - name
    SeerAutofixState:
      type: object
      properties:
        status:
          type: string
          enum:
          - pending
          - processing
          - completed
          - error
        createdAt:
          type: string
          format: date-time
        completedAt:
          type: string
          format: date-time
          nullable: true
        steps:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              title:
                type: string
              status:
                type: string
              completedMessage:
                type: string
                nullable: true
        fix:
          type: object
          nullable: true
          properties:
            title:
              type: string
            description:
              type: string
            pr_url:
              type: string
              format: uri
              nullable: true
      required:
      - status
      - createdAt
  parameters:
    OrganizationIdOrSlug:
      name: organization_id_or_slug
      in: path
      required: true
      description: The ID or slug of the organization.
      schema:
        type: string
    IssueId:
      name: issue_id
      in: path
      required: true
      description: The ID of the issue.
      schema:
        type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Authentication token for the Sentry API.