Honeybadger Projects API

The Projects API from Honeybadger — 21 operation(s) for projects.

Operations 26

GET /v2/projects List projects #
POST /v2/projects Create a project #
GET /v2/projects/{id} Get a project #
PUT /v2/projects/{id} Update a project #
DELETE /v2/projects/{id} Delete a project #
GET /v2/projects/occurrences Count error occurrences across all projects #
GET /v2/projects/{id}/occurrences Count error occurrences for a project #
GET /v2/projects/{id}/integrations List project integrations #
GET /v2/projects/{id}/reports/notices_by_class Error counts grouped by exception class #
GET /v2/projects/{id}/reports/notices_by_location Error counts grouped by location #
GET /v2/projects/{id}/reports/notices_by_user Error counts grouped by affected user #
GET /v2/projects/{id}/reports/notices_per_day Error counts grouped by day #
GET /v2/projects/{projectId}/faults List faults #
GET /v2/projects/{projectId}/faults/{faultId} Get a fault #
PUT /v2/projects/{projectId}/faults/{faultId} Update a fault #
DELETE /v2/projects/{projectId}/faults/{faultId} Delete a fault #
GET /v2/projects/{projectId}/faults/summary Fault summary counts grouped by environment and status #
GET /v2/projects/{projectId}/faults/{faultId}/occurrences Get occurrence counts for a fault #
POST /v2/projects/{projectId}/faults/{faultId}/pause Pause notifications for a fault #
POST /v2/projects/{projectId}/faults/{faultId}/unpause Unpause a fault #
POST /v2/projects/{projectId}/faults/unpause Unpause all faults in a project #
POST /v2/projects/{projectId}/faults/resolve Resolve all faults in a project #
POST /v2/projects/{projectId}/faults/{faultId}/link Link a fault to an external issue (GitHub, Pivotal, etc.) #
POST /v2/projects/{projectId}/faults/{faultId}/unlink Unlink a fault from its external issue #
GET /v2/projects/{projectId}/faults/{faultId}/notices List individual error notices for a fault #
GET /v2/projects/{projectId}/faults/{faultId}/affected_users List users affected by a fault #

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/honeybadger-projects-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

honeybadger-projects-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Honeybadger Check In Projects API
  description: 'Honeybadger exposes two HTTP APIs. The Reporting API ingests

    exceptions, deploys, check-ins, source maps, and events from

    instrumented applications using a project API key in the `X-API-Key`

    header. The Data API provides read/write access to projects, faults,

    and reports using HTTP Basic auth with a personal auth token as the

    username and empty password.

    '
  version: '2.0'
  contact:
    name: Honeybadger API Docs
    url: https://docs.honeybadger.io/api/
servers:
- url: https://api.honeybadger.io
  description: Honeybadger API
security:
- BasicAuth: []
tags:
- name: Projects
paths:
  /v2/projects:
    get:
      summary: List projects
      operationId: listProjects
      parameters:
      - name: account_id
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Projects
    post:
      summary: Create a project
      operationId: createProject
      parameters:
      - name: account_id
        in: query
        required: false
        schema:
          type: string
      responses:
        '201':
          description: Created
      tags:
      - Projects
  /v2/projects/{id}:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Get a project
      operationId: getProject
      responses:
        '200':
          description: OK
      tags:
      - Projects
    put:
      summary: Update a project
      operationId: updateProject
      responses:
        '200':
          description: OK
      tags:
      - Projects
    delete:
      summary: Delete a project
      operationId: deleteProject
      responses:
        '204':
          description: Deleted
      tags:
      - Projects
  /v2/projects/occurrences:
    get:
      summary: Count error occurrences across all projects
      operationId: getOccurrencesAcrossProjects
      responses:
        '200':
          description: OK
      tags:
      - Projects
  /v2/projects/{id}/occurrences:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Count error occurrences for a project
      operationId: getProjectOccurrences
      responses:
        '200':
          description: OK
      tags:
      - Projects
  /v2/projects/{id}/integrations:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      summary: List project integrations
      operationId: listProjectIntegrations
      responses:
        '200':
          description: OK
      tags:
      - Projects
  /v2/projects/{id}/reports/notices_by_class:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Error counts grouped by exception class
      operationId: reportNoticesByClass
      responses:
        '200':
          description: OK
      tags:
      - Projects
  /v2/projects/{id}/reports/notices_by_location:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Error counts grouped by location
      operationId: reportNoticesByLocation
      responses:
        '200':
          description: OK
      tags:
      - Projects
  /v2/projects/{id}/reports/notices_by_user:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Error counts grouped by affected user
      operationId: reportNoticesByUser
      responses:
        '200':
          description: OK
      tags:
      - Projects
  /v2/projects/{id}/reports/notices_per_day:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Error counts grouped by day
      operationId: reportNoticesPerDay
      responses:
        '200':
          description: OK
      tags:
      - Projects
  /v2/projects/{projectId}/faults:
    parameters:
    - name: projectId
      in: path
      required: true
      schema:
        type: string
    get:
      summary: List faults
      operationId: listFaults
      responses:
        '200':
          description: OK
      tags:
      - Projects
  /v2/projects/{projectId}/faults/{faultId}:
    parameters:
    - name: projectId
      in: path
      required: true
      schema:
        type: string
    - name: faultId
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Get a fault
      operationId: getFault
      responses:
        '200':
          description: OK
      tags:
      - Projects
    put:
      summary: Update a fault
      operationId: updateFault
      responses:
        '200':
          description: OK
      tags:
      - Projects
    delete:
      summary: Delete a fault
      operationId: deleteFault
      responses:
        '204':
          description: Deleted
      tags:
      - Projects
  /v2/projects/{projectId}/faults/summary:
    parameters:
    - name: projectId
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Fault summary counts grouped by environment and status
      operationId: getFaultSummary
      responses:
        '200':
          description: OK
      tags:
      - Projects
  /v2/projects/{projectId}/faults/{faultId}/occurrences:
    parameters:
    - name: projectId
      in: path
      required: true
      schema:
        type: string
    - name: faultId
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Get occurrence counts for a fault
      operationId: getFaultOccurrences
      responses:
        '200':
          description: OK
      tags:
      - Projects
  /v2/projects/{projectId}/faults/{faultId}/pause:
    parameters:
    - name: projectId
      in: path
      required: true
      schema:
        type: string
    - name: faultId
      in: path
      required: true
      schema:
        type: string
    post:
      summary: Pause notifications for a fault
      operationId: pauseFault
      responses:
        '200':
          description: OK
      tags:
      - Projects
  /v2/projects/{projectId}/faults/{faultId}/unpause:
    parameters:
    - name: projectId
      in: path
      required: true
      schema:
        type: string
    - name: faultId
      in: path
      required: true
      schema:
        type: string
    post:
      summary: Unpause a fault
      operationId: unpauseFault
      responses:
        '200':
          description: OK
      tags:
      - Projects
  /v2/projects/{projectId}/faults/unpause:
    parameters:
    - name: projectId
      in: path
      required: true
      schema:
        type: string
    post:
      summary: Unpause all faults in a project
      operationId: unpauseAllFaults
      responses:
        '200':
          description: OK
      tags:
      - Projects
  /v2/projects/{projectId}/faults/resolve:
    parameters:
    - name: projectId
      in: path
      required: true
      schema:
        type: string
    post:
      summary: Resolve all faults in a project
      operationId: resolveAllFaults
      responses:
        '200':
          description: OK
      tags:
      - Projects
  /v2/projects/{projectId}/faults/{faultId}/link:
    parameters:
    - name: projectId
      in: path
      required: true
      schema:
        type: string
    - name: faultId
      in: path
      required: true
      schema:
        type: string
    post:
      summary: Link a fault to an external issue (GitHub, Pivotal, etc.)
      operationId: linkFault
      responses:
        '200':
          description: OK
      tags:
      - Projects
  /v2/projects/{projectId}/faults/{faultId}/unlink:
    parameters:
    - name: projectId
      in: path
      required: true
      schema:
        type: string
    - name: faultId
      in: path
      required: true
      schema:
        type: string
    post:
      summary: Unlink a fault from its external issue
      operationId: unlinkFault
      responses:
        '200':
          description: OK
      tags:
      - Projects
  /v2/projects/{projectId}/faults/{faultId}/notices:
    parameters:
    - name: projectId
      in: path
      required: true
      schema:
        type: string
    - name: faultId
      in: path
      required: true
      schema:
        type: string
    get:
      summary: List individual error notices for a fault
      operationId: listFaultNotices
      responses:
        '200':
          description: OK
      tags:
      - Projects
  /v2/projects/{projectId}/faults/{faultId}/affected_users:
    parameters:
    - name: projectId
      in: path
      required: true
      schema:
        type: string
    - name: faultId
      in: path
      required: true
      schema:
        type: string
    get:
      summary: List users affected by a fault
      operationId: listAffectedUsers
      responses:
        '200':
          description: OK
      tags:
      - Projects
components:
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
      description: 'HTTP Basic auth. Use your personal AUTH_TOKEN as the username and

        leave the password empty: `-u AUTH_TOKEN:`. Required for the

        Data API (`/v2/*`).

        '
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Project API key used by the Reporting API (`/v1/*`).