← Back to Documentation

Getting Started

Welcome to HealthCloud Marketplace! This guide will help you get up and running in minutes.

In this guide:

  • → Create an account
  • → Get your API key
  • → Make your first API call
  • → Deploy your first model

1. Create Your Account

Sign up for a developer account to access the HealthCloud Marketplace APIs and start building healthcare AI applications.

Visit: https://healthcloud.com/auth/register

Choose the Developer role during registration to access all developer features.

2. Get Your API Key

After registration, navigate to your Developer Studio to generate an API key.

  1. Go to Developer Studio
  2. Click on "API Keys" in the sidebar
  3. Click "Generate New Key"
  4. Copy and securely store your API key

Important: Keep your API key secret! Never commit it to version control.

3. Make Your First API Call

Test your API key by fetching the list of available AI models.

Using cURL:

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'

Using JavaScript:

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);

Using Python:

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)

4. Deploy Your First Model

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're All Set!

You've successfully made your first API call. Here's what to explore next:

Need help? Contact Support or join our Developer Community