Sentry Dashboards API

Manage custom dashboards and their widgets

Operations 5

GET /organizations/{organization_id_or_slug}/dashboards/ Sentry List an organization's custom dashboards #
POST /organizations/{organization_id_or_slug}/dashboards/ Sentry Create a new dashboard for an organization #
GET /organizations/{organization_id_or_slug}/dashboards/{dashboard_id}/ Sentry Retrieve an organization's custom dashboard #
PUT /organizations/{organization_id_or_slug}/dashboards/{dashboard_id}/ Sentry Edit an organization's custom dashboard #
DELETE /organizations/{organization_id_or_slug}/dashboards/{dashboard_id}/ Sentry Delete an organization's custom dashboard #

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-dashboards-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-dashboards-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sentry Alerts Dashboards 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: Dashboards
  description: Manage custom dashboards and their widgets
paths:
  /organizations/{organization_id_or_slug}/dashboards/:
    get:
      operationId: listOrganizationDashboards
      summary: Sentry List an organization's custom dashboards
      description: Returns a list of custom dashboards for the given organization.
      tags:
      - Dashboards
      parameters:
      - $ref: '#/components/parameters/OrganizationIdOrSlug'
      - name: cursor
        in: query
        description: Pagination cursor.
        schema:
          type: string
      responses:
        '200':
          description: A list of dashboards.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DashboardSummary'
        '401':
          description: Unauthorized.
        '403':
          description: Forbidden.
    post:
      operationId: createOrganizationDashboard
      summary: Sentry Create a new dashboard for an organization
      description: Creates a new custom dashboard for the given organization.
      tags:
      - Dashboards
      parameters:
      - $ref: '#/components/parameters/OrganizationIdOrSlug'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - title
              properties:
                title:
                  type: string
                  description: The title of the dashboard.
                widgets:
                  type: array
                  items:
                    $ref: '#/components/schemas/Widget'
                  description: Widgets to include in the dashboard.
      responses:
        '201':
          description: Dashboard created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Dashboard'
        '400':
          description: Bad request.
        '401':
          description: Unauthorized.
        '403':
          description: Forbidden.
  /organizations/{organization_id_or_slug}/dashboards/{dashboard_id}/:
    get:
      operationId: retrieveOrganizationDashboard
      summary: Sentry Retrieve an organization's custom dashboard
      description: Returns a custom dashboard with its widgets.
      tags:
      - Dashboards
      parameters:
      - $ref: '#/components/parameters/OrganizationIdOrSlug'
      - $ref: '#/components/parameters/DashboardId'
      responses:
        '200':
          description: Dashboard details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Dashboard'
        '401':
          description: Unauthorized.
        '404':
          description: Dashboard not found.
    put:
      operationId: editOrganizationDashboard
      summary: Sentry Edit an organization's custom dashboard
      description: Updates a custom dashboard.
      tags:
      - Dashboards
      parameters:
      - $ref: '#/components/parameters/OrganizationIdOrSlug'
      - $ref: '#/components/parameters/DashboardId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                title:
                  type: string
                widgets:
                  type: array
                  items:
                    $ref: '#/components/schemas/Widget'
      responses:
        '200':
          description: Dashboard updated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Dashboard'
        '400':
          description: Bad request.
        '401':
          description: Unauthorized.
        '404':
          description: Dashboard not found.
    delete:
      operationId: deleteOrganizationDashboard
      summary: Sentry Delete an organization's custom dashboard
      description: Deletes a custom dashboard.
      tags:
      - Dashboards
      parameters:
      - $ref: '#/components/parameters/OrganizationIdOrSlug'
      - $ref: '#/components/parameters/DashboardId'
      responses:
        '204':
          description: Dashboard deleted.
        '401':
          description: Unauthorized.
        '404':
          description: Dashboard not found.
components:
  parameters:
    OrganizationIdOrSlug:
      name: organization_id_or_slug
      in: path
      required: true
      description: The ID or slug of the organization.
      schema:
        type: string
    DashboardId:
      name: dashboard_id
      in: path
      required: true
      description: The ID of the dashboard.
      schema:
        type: string
  schemas:
    Widget:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
        displayType:
          type: string
          enum:
          - line
          - area
          - stacked_area
          - bar
          - table
          - big_number
          - top_n
        interval:
          type: string
        queries:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              name:
                type: string
              fields:
                type: array
                items:
                  type: string
              conditions:
                type: string
              orderby:
                type: string
        layout:
          type: object
          properties:
            x:
              type: integer
            y:
              type: integer
            w:
              type: integer
            h:
              type: integer
            minH:
              type: integer
      required:
      - title
      - displayType
      - queries
    DashboardSummary:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
        dateCreated:
          type: string
          format: date-time
        createdBy:
          type: object
          properties:
            id:
              type: string
            name:
              type: string
            email:
              type: string
        widgetDisplay:
          type: array
          items:
            type: string
      required:
      - id
      - title
    Dashboard:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
        dateCreated:
          type: string
          format: date-time
        createdBy:
          type: object
          properties:
            id:
              type: string
            name:
              type: string
            email:
              type: string
        widgets:
          type: array
          items:
            $ref: '#/components/schemas/Widget'
      required:
      - id
      - title
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Authentication token for the Sentry API.