Official Java SDK for HealthCloud Marketplace API
One command to get started
Full type definitions included
Comprehensive examples & guides
<!-- 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'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();