Skip to main content
GET
/
health
Java (SDK)
package hello.world;

import java.lang.Exception;
import org.openapis.openapi.AriesJava;
import org.openapis.openapi.models.operations.HealthCheckResponse;

public class Application {

    public static void main(String[] args) throws Exception {

        AriesJava sdk = AriesJava.builder()
                .bearerAuth(System.getenv().getOrDefault("BEARER_AUTH", ""))
            .build();

        HealthCheckResponse res = sdk.health().check()
                .call();

        if (res.healthResponse().isPresent()) {
            // handle response
        }
    }
}
{
  "status": "healthy"
}

Documentation Index

Fetch the complete documentation index at: https://finance.dev/llms.txt

Use this file to discover all available pages before exploring further.

Response

200 - application/json

Service is healthy

status
string

Service health status

Example:

"healthy"