Galileo Technologies health API

The health API from Galileo Technologies — 7 operation(s) for health.

Operations 7

GET /healthcheck Healthcheck #
GET /healthcheck/postgres Postgres Healthcheck #
GET /healthcheck/clickhouse Clickhouse Healthcheck #
GET /v1/healthcheck Healthcheck #
GET /v2/healthcheck Healthcheck #
GET /public/v1/healthcheck Healthcheck #
GET /public/v2/healthcheck Healthcheck #

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/galileo-technologies-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

galileo-technologies-health-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Galileo API Server annotation Health API
  version: 1.1085.0
servers:
- url: https://api.galileo.ai
  description: Galileo API Server - galileo-v2
tags:
- name: health
paths:
  /healthcheck:
    get:
      tags:
      - health
      summary: Healthcheck
      operationId: healthcheck_healthcheck_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthcheckResponse'
  /healthcheck/postgres:
    get:
      tags:
      - health
      summary: Postgres Healthcheck
      description: 'PostgreSQL health check for external monitoring.


        Executes SELECT 1 query to verify database connectivity.

        Returns 200 if healthy, 503 if unhealthy.'
      operationId: postgres_healthcheck_healthcheck_postgres_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /healthcheck/clickhouse:
    get:
      tags:
      - health
      summary: Clickhouse Healthcheck
      description: 'ClickHouse health check for external monitoring.


        Executes SELECT 1 query to verify database connectivity.

        Returns 200 if healthy, 503 if unhealthy.'
      operationId: clickhouse_healthcheck_healthcheck_clickhouse_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /v1/healthcheck:
    get:
      tags:
      - health
      summary: Healthcheck
      operationId: healthcheck_v1_healthcheck_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthcheckResponse'
  /v2/healthcheck:
    get:
      tags:
      - health
      summary: Healthcheck
      operationId: healthcheck_v2_healthcheck_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthcheckResponse'
  /public/v1/healthcheck:
    get:
      tags:
      - health
      summary: Healthcheck
      operationId: healthcheck_public_v1_healthcheck_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthcheckResponse'
  /public/v2/healthcheck:
    get:
      tags:
      - health
      summary: Healthcheck
      operationId: healthcheck_public_v2_healthcheck_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthcheckResponse'
components:
  schemas:
    HealthcheckResponse:
      properties:
        api_version:
          type: string
          title: Api Version
        message:
          type: string
          title: Message
        version:
          type: string
          title: Version
      type: object
      required:
      - api_version
      - message
      - version
      title: HealthcheckResponse
  securitySchemes:
    ClassicAPIKeyHeader:
      type: apiKey
      in: header
      name: Galileo-API-Key
    APIKeyHeader:
      type: apiKey
      in: header
      name: Splunk-AO-API-Key
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: https://api.galileo.ai/login
    HTTPBasic:
      type: http
      scheme: basic