Skip to main content
GET
/
bridge
/
catalog
/
export
cURL
curl --request GET \
  --url https://api.connect.fastenhealth.com/v1/bridge/catalog/export \
  --header 'Authorization: Basic <encoded-value>'
{
  "brands.json": "https://fasten-connect-cdn-prod-1234/catalog/2024-06-28/brands.json?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Expires=60&...",
  "portals.json": "https://fasten-connect-cdn-prod-1234/catalog/2024-06-28/portals.json?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Expires=60&...",
  "endpoints.json": "https://fasten-connect-cdn-prod-1234/catalog/2024-06-28/endpoints.json?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Expires=60&..."
}
Call this endpoint with your bridge API credentials (HTTP Basic auth using the public_id and private_key) whenever you need to hydrate an offline cache of our catalog. Instead of iterating through the /bridge/catalog lookup endpoint, this API returns pre-signed URLs for JSON files that contain the entire public catalog:
  • brands.json – Logos, names, TEFCA directory metadata, and other display properties for each brand.
  • portals.json – Portal definitions, including login methods and the brands they belong to.
  • endpoints.json – Technical endpoint configuration, such as FHIR base URLs, TEFCA IAS capability flags, and supported auth flows.
The download URLs expire after 60 minutes. Begin downloading the files immediately after requesting them.This API is rate limited and the brand, portal and endpoint data structure is subject to change without notice.Please contact support@fastenhealth.com before use.
{
  "brands.json": "https://fasten-connect-cdn-prod-1234/catalog/2024-06-28/brands.json?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Expires=60&...",
  "portals.json": "https://fasten-connect-cdn-prod-1234/catalog/2024-06-28/portals.json?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Expires=60&...",
  "endpoints.json": "https://fasten-connect-cdn-prod-1234/catalog/2024-06-28/endpoints.json?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Expires=60&..."
}

Authorizations

Authorization
string
header
required

Basic Authentication, containing API Public Id and Private Key generated from the Fasten Connect Portal. Do not expose these keys in the browser.

Response

200 - application/json

Download URLs for each catalog file

brands.json
string<uri>

Bulk metadata for every brand supported by Fasten Connect.

Example:

"https://fasten-connect-cdn-prod-1234/catalog/2024-06-28/brands.json?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Expires=60&..."

portals.json
string<uri>

Bulk metadata for every portal supported by Fasten Connect.

Example:

"https://fasten-connect-cdn-prod-1234/catalog/2024-06-28/portals.json?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Expires=60&..."

endpoints.json
string<uri>

Bulk metadata for every endpoint supported by Fasten Connect.

Example:

"https://fasten-connect-cdn-prod-1234/catalog/2024-06-28/endpoints.json?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Expires=60&..."