Isovalent Healthz API

The Healthz API from Isovalent — 1 operation(s) for healthz.

Operations 1

GET /healthz Get health of Cilium node

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/isovalent-healthz-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

isovalent-healthz-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Cilium bgp Healthz API
  description: Cilium
  version: v1beta1
  x-provenance:
    method: derived
    authored_by: API Evangelist
    derived_on: '2026-08-19'
    first_party: false
    provider_published: false
    source: Modelled from the provider's public HTML documentation.
    note: 'Not published by the provider. Probed 2026-08-19: no anonymously fetchable first-party contract. Cilium''s agent/health specs are open source; the Isovalent-branded documents here were modelled from docs.'
servers:
- url: /v1
tags:
- name: Healthz
paths:
  /healthz:
    get:
      summary: Get health of Cilium node
      description: 'Returns health and status information of the local node including

        load and uptime, as well as the status of related components including

        the Cilium daemon.

        '
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
        '500':
          description: Failed to contact local Cilium daemon
          x-go-name: Failed
          content:
            application/json:
              schema:
                $ref: ../openapi.yaml#/definitions/Error
      tags:
      - Healthz
components:
  schemas:
    StatusResponse:
      type: object
      description: Status of Cilium daemon
      x-go-type:
        type: StatusResponse
        import:
          package: github.com/cilium/cilium/api/v1/models
          alias: ciliumModels
        hint:
          kind: object
    HealthResponse:
      description: Health and status information of local node
      type: object
      properties:
        cilium:
          description: Status of Cilium daemon
          $ref: '#/components/schemas/StatusResponse'
        uptime:
          description: Uptime of cilium-health instance
          type: string
        system-load:
          description: System load on node
          $ref: '#/components/schemas/LoadResponse'
    LoadResponse:
      description: System load on node
      type: object
      properties:
        last1min:
          description: Load average over the past minute
          type: string
        last5min:
          description: Load average over the past 5 minutes
          type: string
        last15min:
          description: Load average over the past 15 minutes
          type: string
x-schemes:
- unix