Honeybadger Notices API

The Notices API from Honeybadger — 1 operation(s) for notices.

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-notices-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

honeybadger-notices-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Honeybadger Check In Notices 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: Notices
paths:
  /v1/notices:
    post:
      summary: Report an exception
      operationId: reportNotice
      security:
      - ApiKeyAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                notifier:
                  type: object
                error:
                  type: object
                  properties:
                    class:
                      type: string
                    message:
                      type: string
                    backtrace:
                      type: array
                      items:
                        type: object
                    tags:
                      type: array
                      items:
                        type: string
                    fingerprint:
                      type: string
                request:
                  type: object
                  properties:
                    context:
                      type: object
                    component:
                      type: string
                    action:
                      type: string
                    url:
                      type: string
                    params:
                      type: object
                    session:
                      type: object
                    cgi_data:
                      type: object
                server:
                  type: object
                  properties:
                    project_root:
                      type: object
                    environment_name:
                      type: string
                    hostname:
                      type: string
                    revision:
                      type: string
                    pid:
                      type: integer
                breadcrumbs:
                  type: object
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
        '403':
          description: Invalid API key or deactivated account
        '413':
          description: Payload exceeds 256KB
        '422':
          description: Malformed payload
        '429':
          description: Rate limit exceeded
      tags:
      - Notices
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/*`).