Voyant.io Health API

Service health and status

Operations 3

GET /health Health Check #
GET /api/gypsum/connection-status Connection Status #
GET /health/db Health Check Db #

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/voyant-health-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

voyant-health-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Voyant Health API
  version: 1.0.0
  description: 'Operations tagged health across 2 of this provider''s published API definitions: voyant-gypsum-openapi.json, voyant-openapi-original.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://gypsum.voyant.io
  description: Production
- url: http://localhost:3001
  description: Local development
- url: https://voice-forge-production.up.railway.app
  description: Production
tags:
- name: health
  description: Service health and status
paths:
  /health:
    get:
      tags:
      - health
      summary: Health Check
      description: Check if the Gypsum API server is running.
      operationId: healthCheck
      responses:
        '200':
          description: Service is healthy
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: OK
                  timestamp:
                    type: string
                    format: date-time
    servers:
    - url: https://gypsum.voyant.io
      description: Production
    - url: http://localhost:3001
      description: Local development
  /api/gypsum/connection-status:
    get:
      tags:
      - health
      summary: Connection Status
      description: Check Gypsum API connection status (used by VoiceForge integrations).
      operationId: connectionStatus
      responses:
        '200':
          description: Connection status
          content:
            application/json:
              schema:
                type: object
                properties:
                  connected:
                    type: boolean
                    example: true
                  status:
                    type: string
                    example: OK
                  timestamp:
                    type: string
                    format: date-time
                  service:
                    type: string
                    example: gypsum-api
    servers:
    - url: https://gypsum.voyant.io
      description: Production
    - url: http://localhost:3001
      description: Local development
  /health/db:
    get:
      summary: Health Check Db
      description: Deep health check that verifies all critical database tables exist.
      operationId: health_check_db_health_db_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      tags:
      - health
    servers:
    - url: https://voice-forge-production.up.railway.app
      description: Production
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer
x-refined-from:
- voyant-gypsum-openapi.json
- voyant-openapi-original.json