Welcome to HealthCloud Marketplace! This guide will help you get up and running in minutes.
Sign up for a developer account to access the HealthCloud Marketplace APIs and start building healthcare AI applications.
Visit: https://healthcloud.com/auth/registerChoose the Developer role during registration to access all developer features.
After registration, navigate to your Developer Studio to generate an API key.
Important: Keep your API key secret! Never commit it to version control.
Test your API key by fetching the list of available AI models.
curl -X GET 'https://api.healthcloud.com/api/v1/marketplace-assets?asset_type=model' \ -H 'Authorization: Bearer YOUR_API_KEY' \ -H 'Content-Type: application/json'
const response = await fetch(
'https://api.healthcloud.com/api/v1/marketplace-assets?asset_type=model',
{
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
}
);
const models = await response.json();
console.log(models);import requests
headers = {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
response = requests.get(
'https://api.healthcloud.com/api/v1/marketplace-assets',
params={'asset_type': 'model'},
headers=headers
)
models = response.json()
print(models)Deploy a pre-trained AI model from the marketplace to start making predictions.
POST /api/v1/deployments
{
"app_id": "radiology-classifier-v2",
"environment": "production",
"fhir_resources": ["Observation", "DiagnosticReport"],
"compliance": {
"hipaa_compliant": true,
"gdpr_compliant": true
}
}You've successfully made your first API call. Here's what to explore next:
Need help? Contact Support or join our Developer Community