API Reference/Asset Installations

Asset Installations

An installation links a marketplace asset to a project, enabling deployment and usage tracking.

The Asset Installation Object

FieldTypeDescription
idstringUnique installation ID with prefix inst_ (e.g. inst_uti_001)
assetIdstringID of the installed marketplace asset
projectIdstringID of the project this asset is installed into
statusstringOne of: active | inactive | error
configobjectKey-value configuration overrides specific to this installation
callsThisMonthintegerNumber of API calls attributed to this installation in the current billing period
installedAtdatetimeISO 8601 UTC timestamp of when the asset was installed

Endpoints

Returns all asset installations in a project.

Parameters

ParameterInTypeRequiredDescription
projectIde.g. proj_rpm_001querystringrequiredProject to scope the list

Request

curl "https://api.healthcloud.ai/v1/asset-installations?projectId=proj_rpm_001" \
  -H "Authorization: Bearer hc_test_sk_demo_live_xxxxxx"

Response

Response200
{
  "data": [
    {
      "id": "inst_uti_001",
      "assetId": "asset_uti_agent_v1",
      "projectId": "proj_rpm_001",
      "status": "active",
      "installedAt": "2026-01-10T08:00:00Z"
    }
  ]
}

Related Resources