CuraeAI Developers
API referenceSDK Catalog

Search the health-system brand catalog (public)

Public, unauthenticated search over the CuraeAI health-system brand catalog — the discovery surface a consumer uses to build an institution picker before any data is linked. The catalog contains only non-PHI metadata (brand name, EHR platform type, FHIR base URL, city/state, and a logo reference), so no API key is required; the authorization boundary is the SDK connection, not catalog discovery. Results are deduplicated by FHIR system identity and CDN-cached at the edge.

GET/api/sdk/v1/catalog/brands

Public, unauthenticated search over the CuraeAI health-system brand catalog — the discovery surface a consumer uses to build an institution picker before any data is linked. The catalog contains only non-PHI metadata (brand name, EHR platform type, FHIR base URL, city/state, and a logo reference), so no API key is required; the authorization boundary is the SDK connection, not catalog discovery. Results are deduplicated by FHIR system identity and CDN-cached at the edge.

Query Parameters

q*string

Multi-word search query matched against brand name, aliases, city, and state. Queries shorter than 2 characters return an empty result set.

platformType?string

Optional filter to a single EHR platform (e.g. EPIC).

limit?integer

Maximum number of brands to return (1..100, default 25).

Response Body

application/json

application/problem+json

curl -X GET "https://example.com/api/sdk/v1/catalog/brands?q=string"
{  "brands": [    {      "id": "string",      "name": "string",      "platformType": "string",      "fhirBaseUrl": "http://example.com",      "city": "string",      "state": "string",      "portalUrl": "http://example.com",      "logoUrl": "string"    }  ],  "count": 0}
{  "type": "string",  "title": "string",  "status": 0,  "detail": "string",  "instance": "string",  "code": "string",  "details": {},  "retryable": true}