Health

GEThttps://zylai-a779.zyllion.network/v1/health

Perform a system health check.

  • Returns: Current system health status and uptime

Health Check Details

  • Provides a quick verification of system operational status

  • Reports current system uptime

Status Indicators

  • status: Indicates system operational condition

    • "ok": System is functioning normally

  • uptime: Duration the system has been running

Example

# Retrieve system health status
health = await health_check()
# Expect: HealthCheckResponse(status='ok', uptime=3600)

Responses

  • 200

Successful Response

  • application/json

  • Schema

  • Example (auto)

  • curl

  • dart

  • go

  • http

  • java

  • javascript

  • kotlin

  • c

  • nodejs

  • objective-c

  • ocaml

  • php

  • powershell

  • python

  • r

  • ruby

  • rust

  • shell

  • swift

  • HTTPCLIENT

  • RESTSHARP

var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://zylai-a779.zyllion.network/v1/health");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());

RequestCollapse all Send API RequestResponseClear

Click the Send API Request button above and see the response here!

Last updated