Assets

Assets are published AI models, agents, connectors, datasets, and solutions available in the marketplace.

The Asset Object

FieldTypeDescription
idstringUnique asset ID (e.g. asset_uti_agent_v1)
namestringDisplay name of the asset
typestringOne of: model | agent | connector | dataset | solution
versionstringSemantic version string (e.g. 1.2.0)
publisherobjectPublisher object with id and name fields
fhirResourcesstring[]List of FHIR R4 resource types this asset consumes or produces
hipaaCompliantbooleanWhether the asset has passed HealthCloud HIPAA compliance review
complianceScoreobjectDetailed compliance breakdown: overall (0–100), hipaa, fdaReady
pricingobjectPricing model: { model: per_call | subscription | free, unitPrice }
ratingnumberAverage star rating (0–5) from verified installs
installsintegerTotal number of times this asset has been installed

Endpoints

Browse and filter marketplace assets.

Parameters

ParameterInTypeRequiredDescription
typee.g. agentquerystringoptionalAsset type (model|agent|connector|dataset|solution)
categorye.g. cardiologyquerystringoptionalClinical category
minRatinge.g. 4.5querynumberoptionalMinimum star rating (0–5)
fhirResourcee.g. ObservationquerystringoptionalFilter by FHIR resource compatibility

Request

curl "https://api.healthcloud.ai/v1/assets?type=agent&minRating=4.5" \
  -H "Authorization: Bearer hc_test_sk_demo_live_xxxxxx"

Response

Response200
{
  "data": [
    {
      "id": "asset_uti_agent_v1",
      "name": "UTI Screening Agent",
      "type": "agent",
      "category": "urology",
      "rating": 4.8,
      "installs": 3241,
      "fhirResources": ["Observation", "Condition"],
      "hipaaCompliant": true,
      "pricing": { "model": "per_call", "unitPrice": 0.01 }
    }
  ],
  "meta": { "total": 247, "cursor": "asset_cdss_v2" }
}

Related Resources