ShiftCare Care Connector — API

A REST API over a ShiftCare user's data, for dashboards and integrations.

Auth

Mint an API key with the create_dashboard_api_key MCP tool, then send it as Authorization: Bearer <key>. Call the API from a server/BFF — never ship the key to a browser. Data is scoped to the ShiftCare user the key is bound to.

Example

fetch("https://cnk2kqvtwr.ap-southeast-2.awsapprunner.com/api/v1/clients", {
  headers: { Authorization: "Bearer <API_KEY>" }
}).then(r => r.json())