Sybilion Health API

The Health API from Sybilion — 1 operation(s) for health.

Operations 1

GET /health Service health check

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/sybilion-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 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

sybilion-health-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: 'The Sybilion API powers the Sybilion Developers Portal: forecasts, drivers, catalog, account

    and usage. Authenticate every request with `Authorization: Bearer <token>` using either an

    API key created in the Developers Portal or an Auth0 access token from your dashboard session.

    '
  title: Sybilion Health API
  version: 0.1.0
servers:
- url: /
tags:
- name: Health
paths:
  /health:
    get:
      description: 'Liveness check. Returns `status` ("ok" or "degraded") and a `components` map

        where each key is a functional component name and each value reports its current

        state. A 200 means all components are healthy; 503 means at least one is in an

        error state.

        '
      responses:
        '200':
          content:
            application/json:
              example:
                status: ok
                components:
                  data_storage:
                    status: ok
                  object_storage:
                    status: ok
                  workflow_engine:
                    status: ok
              schema:
                properties:
                  status:
                    description: Overall health — "ok" when all components are healthy, "degraded" otherwise.
                    enum:
                    - ok
                    - degraded
                    type: string
                  components:
                    description: Per-component status map. Keys are functional names (e.g. data_storage, workflow_engine).
                    additionalProperties:
                      properties:
                        status:
                          enum:
                          - ok
                          - error
                          type: string
                      type: object
                    type: object
                type: object
          description: All components healthy.
        '503':
          content:
            application/json:
              example:
                status: degraded
                components:
                  data_storage:
                    status: ok
                  object_storage:
                    status: ok
                  workflow_engine:
                    status: error
              schema:
                properties:
                  status:
                    enum:
                    - degraded
                    type: string
                  components:
                    additionalProperties:
                      properties:
                        status:
                          type: string
                      type: object
                    type: object
                type: object
          description: Degraded — at least one component is in an error state.
      summary: Service health check
      tags:
      - Health
components:
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http