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.
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