SDK Documentation

Java SDK

Official Java SDK for HealthCloud Marketplace API

v1.2.0
Java

Easy Installation

One command to get started

Type-Safe

Full type definitions included

Well Documented

Comprehensive examples & guides

Installation

<!-- Add to pom.xml -->
<dependency>
    <groupId>com.healthcloud</groupId>
    <artifactId>sdk</artifactId>
    <version>1.2.0</version>
</dependency>

<!-- Or with Gradle -->
implementation 'com.healthcloud:sdk:1.2.0'

Authentication

Initialize the SDK with your credentials

import com.healthcloud.HealthCloudClient;

// Initialize with API key
HealthCloudClient client = new HealthCloudClient.Builder()
    .apiKey("your_api_key_here")
    .build();

// Or use JWT token
HealthCloudClient client = new HealthCloudClient.Builder()
    .token("your_jwt_token")
    .build();