FireHydrant Incidents API

The Incidents API from FireHydrant — 5 operation(s) for incidents.

Operations 8

GET /incidents List incidents #
POST /incidents Declare an incident #
GET /incidents/{incident_id} Retrieve an incident #
PATCH /incidents/{incident_id} Update an incident #
DELETE /incidents/{incident_id} Archive an incident #
PUT /incidents/{incident_id}/close Close an incident #
POST /incidents/{incident_id}/notes Add an incident note #
GET /incidents/{incident_id}/events List events for an 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/firehydrant-incidents-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

firehydrant-incidents-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: FireHydrant REST Audits Incidents API
  description: Incident management platform exposing programmatic access to incidents, services, teams, environments, runbooks, change events, on-call schedules, Signals event sources, status pages, retrospectives, and integrations. Authentication is by Bot User API token presented as a Bearer token.
  version: '1.0'
  contact:
    name: FireHydrant
    url: https://docs.firehydrant.com/reference
servers:
- url: https://api.firehydrant.io/v1
  description: Production
security:
- bearerAuth: []
tags:
- name: Incidents
paths:
  /incidents:
    get:
      summary: List incidents
      operationId: listIncidents
      parameters:
      - name: page
        in: query
        schema:
          type: integer
      - name: per_page
        in: query
        schema:
          type: integer
      - name: query
        in: query
        schema:
          type: string
      - name: status
        in: query
        schema:
          type: string
      - name: severity
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Paginated incident list
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Incident'
                  pagination:
                    $ref: '#/components/schemas/Pagination'
      tags:
      - Incidents
    post:
      summary: Declare an incident
      operationId: createIncident
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - name
              properties:
                name:
                  type: string
                summary:
                  type: string
                description:
                  type: string
                severity:
                  type: string
                priority:
                  type: string
                status:
                  type: string
                incident_type_id:
                  type: string
                tag_list:
                  type: array
                  items:
                    type: string
                impacts:
                  type: array
                  items:
                    type: object
      responses:
        '201':
          description: Incident created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Incident'
      tags:
      - Incidents
  /incidents/{incident_id}:
    get:
      summary: Retrieve an incident
      operationId: getIncident
      parameters:
      - $ref: '#/components/parameters/IncidentId'
      responses:
        '200':
          description: Incident
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Incident'
      tags:
      - Incidents
    patch:
      summary: Update an incident
      operationId: updateIncident
      parameters:
      - $ref: '#/components/parameters/IncidentId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: Updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Incident'
      tags:
      - Incidents
    delete:
      summary: Archive an incident
      operationId: archiveIncident
      parameters:
      - $ref: '#/components/parameters/IncidentId'
      responses:
        '204':
          description: Archived
      tags:
      - Incidents
  /incidents/{incident_id}/close:
    put:
      summary: Close an incident
      operationId: closeIncident
      parameters:
      - $ref: '#/components/parameters/IncidentId'
      responses:
        '200':
          description: Closed
      tags:
      - Incidents
  /incidents/{incident_id}/notes:
    post:
      summary: Add an incident note
      operationId: createIncidentNote
      parameters:
      - $ref: '#/components/parameters/IncidentId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - body
              properties:
                body:
                  type: string
                visibility:
                  type: string
      responses:
        '201':
          description: Note created
      tags:
      - Incidents
  /incidents/{incident_id}/events:
    get:
      summary: List events for an incident
      operationId: listIncidentEvents
      parameters:
      - $ref: '#/components/parameters/IncidentId'
      responses:
        '200':
          description: Event list
      tags:
      - Incidents
components:
  parameters:
    IncidentId:
      name: incident_id
      in: path
      required: true
      schema:
        type: string
  schemas:
    Incident:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        summary:
          type: string
        current_milestone:
          type: string
        number:
          type: integer
        priority:
          type: string
        severity:
          type: string
        severity_color:
          type: string
        tag_list:
          type: array
          items:
            type: string
        created_at:
          type: string
          format: date-time
        started_at:
          type: string
          format: date-time
        discarded_at:
          type: string
          format: date-time
          nullable: true
        organization:
          type: object
        customer_impact_summary:
          type: string
    Pagination:
      type: object
      properties:
        count:
          type: integer
        page:
          type: integer
        items:
          type: integer
        pages:
          type: integer
        last:
          type: integer
        prev:
          type: integer
        next:
          type: integer
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer