Whisperr, Inc. System API

The System API from Whisperr, Inc. — 2 operation(s) for system.

Operations 2

GET /health Check service health #
GET /metrics Expose Prometheus metrics #

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/whisperr-inc-system-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

whisperr-inc-system-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: 'Lean runtime surface for whisp-go.


    Onboarding and setup-time auth are owned by whisp-onboarding-panel. whisp-go

    imports a completed onboarding session, materializes runtime context,

    events, interventions, variants, and their typed links.

    '
  title: Whisperr Runtime System API
  version: 0.2.0
servers:
- description: 'Production. Base URL published at https://docs.whisperr.net/api/overview/ ("Base URL: https://api.whisperr.net"); the served spec declares a relative "/" which names no host.'
  url: https://api.whisperr.net
tags:
- name: System
paths:
  /health:
    get:
      operationId: getHealth
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
          description: Service and dependencies are healthy.
        '503':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
          description: At least one dependency is unavailable.
      summary: Check service health
      tags:
      - System
  /metrics:
    get:
      operationId: getMetrics
      responses:
        '200':
          content:
            text/plain:
              schema:
                type: string
          description: Prometheus metrics payload.
      summary: Expose Prometheus metrics
      tags:
      - System
components:
  schemas:
    HealthResponse:
      properties:
        build_provenance:
          type: string
        db:
          type: string
        redis:
          type: string
        runtime_mode:
          type: string
        status:
          enum:
          - ok
          - error
          type: string
        version:
          type: string
        wizard_anthropic_gateway_configured:
          description: Whether the wizard Anthropic gateway has usable server-side configuration.
          type: boolean
        wizard_openai_gateway_configured:
          description: Whether the wizard OpenAI gateway has usable server-side configuration.
          type: boolean
      required:
      - status
      - db
      - redis
      - runtime_mode
      - wizard_anthropic_gateway_configured
      - wizard_openai_gateway_configured
      type: object
  securitySchemes:
    APIKey:
      description: 'Use `Authorization: Bearer <api_key>`.'
      in: header
      name: Authorization
      type: apiKey
    DashboardBearer:
      bearerFormat: Supabase JWT
      description: 'Use `Authorization: Bearer <supabase_access_token>` from Supabase Auth.'
      scheme: bearer
      type: http
    OnboardingImportSecret:
      in: header
      name: X-Whisp-Onboarding-Import-Secret
      type: apiKey