Skip to content

MedFlo Developer Platform

The MedFlo integration API for skilled-nursing & LTPAC data.

Read residents, coverage, and clinical data as FHIR resources, subscribe to signed webhooks, and authenticate with OAuth2 client-credentials. Request access and you'll get your own private credentials after a short review.

No shared credentials — access is granted after admin review, then you use your own scoped client_id.

Get a token

# Exchange YOUR issued client credentials for a short-lived bearer token.
# Set these from the credentials issued to you after your access request is approved.
CLIENT_ID="your-client-id"
CLIENT_SECRET="your-client-secret"

curl -s -X POST 'https://medflo-pcc-vendor-api-eez5kqwsxa-uw.a.run.app/api/v1/oauth/token' \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -d 'grant_type=client_credentials' \
  -d "client_id=$CLIENT_ID" \
  -d "client_secret=$CLIENT_SECRET" \
  --data-urlencode 'scope=residents.read coverage.read clinical.read'

# → { "access_token": "eyJ...", "token_type": "Bearer",
#     "expires_in": 3600, "scope": "residents.read coverage.read clinical.read" }

Ready to make your first call?

Register an app, get approved, and use your own credentials to fetch a token and call a live endpoint right in the sandbox.