Yes. CentralReach's API lets customers with an API subscription read their own data, and the BloomText API sends and reads the messages around it. You'll need three credentials from your CentralReach representative to start.
How it works
Read from CentralReach
Your app reads staff, clients, and the scheduling data your API user can access through CentralReach’s API.
Match to a conversation
It looks up each patient’s BloomText conversation in a simple mapping your app keeps.
Message in BloomText
It sends reminders and replies with the BloomText API, and hears back through webhooks.
CentralReach stays your system of record. BloomText handles the conversations, and nothing syncs until your app connects the two.
Example requests
Authenticate to CentralReach with its documented OAuth client-credentials flow and read the resources you are approved for. Then use your BloomText API key to read and post messages in the matching conversation. The two systems use separate credentials.
POSThttps://api.bloomtext.com/v1/conversations/{conversationId}/messagesAuthorization: Bearer bt_live_…Idempotency-Key: <unique-request-key>Content-Type: application/json{"body":"The Thursday schedule has been updated. Check your calendar."}
Send your API key in the Authorization header on every request. POST requests also need Idempotency-Key and Content-Type headers.
In CentralReach, an ABA session moves from appointment to timesheet to billing entry, tied to the client’s authorization. CentralReach’s public reference covers authentication and a staff contact call; your representative provisions the rest. These ideas assume your API user has permission for the data each one names.
Lock-date nudges for unconverted sessions
CentralReach creates the billing entry only after an appointment is converted to a timesheet, and practices set a lock date for payroll. A job finds sessions still waiting for conversion a day before that date and posts a short list to each clinic’s team conversation, so RBTs close them out before billing stalls.
Uses CentralReach scheduling data your API user is approved to read
Case-team rosters that follow staffing changes
Each client’s case team usually has a BCBA, a few RBTs, and a scheduler. When your app sees a staffing change, it reads the employee’s CentralReach contact record, matches it to a BloomText user, and adds or removes that person from the case-team conversation.
Uses CentralReach employee contact records
Authorization runway alerts
CentralReach links appointments to authorizations with start and end dates, service codes, and approved amounts. Post an internal note to the BCBA and scheduler when an authorization is close to its end date, so the reauthorization request goes in before sessions have to stop. Payer detail stays in the staff conversation, never in a caregiver text.
Uses CentralReach authorization data, if your approved access includes it
Cancellations and sub coverage
When a session is cancelled, message the caregiver’s conversation that today’s session is off, then post the open slot to the staffing conversation so a scheduler can offer it to another RBT. The standard cancellation reason stays in CentralReach.
Uses CentralReach scheduling data
Caregiver training reminders
Parent and caregiver training sessions are easy to forget because they sit outside the regular therapy block. Send the caregiver a reminder the afternoon before with the time and whether it is in the clinic, at home, or over telehealth.
Uses CentralReach scheduling and client data
Example CentralReach API projects
Case-team roster check
A nightly job that keeps each case-team conversation in BloomText matched to the staff CentralReach says are on the case.
Exchange your client ID and secret for a CentralReach access token. It lasts one hour.
Read each assigned employee’s contact record with your CR API key.
Map the CentralReach employee ID to a BloomText user ID in your own table.
Compare against the conversation’s participants and add anyone missing.
The day before your timesheet lock date, tell each clinic which sessions still need converting.
Pull the week’s appointments through the scheduling endpoints your representative enabled for your API user.
Keep the ones not yet converted to timesheets and group them by clinic and RBT.
Post one message per clinic in its team conversation, using staff initials and session times only.
Thread follow-up questions under the post with reply_to_message_id.
BloomText · HTTP
POSThttps://api.bloomtext.com/v1/conversations/{clinicTeamConversationId}/messagesAuthorization: Bearer bt_live_…Idempotency-Key: <unique-request-key>Content-Type: application/json{"body":"Lock date is tomorrow at 5 PM. 6 sessions from this week still need converting: J.R. (Mon, Wed), A.T. (Tue), M.K. (Thu x3)."}
Cancelled-session notice
Tell the family right away and put the open slot in front of the schedulers.
Detect the cancellation from the CentralReach appointment data your app reads.
Look up the caregiver’s BloomText conversation ID in your mapping and post the notice.
Post the open time to the staffing conversation.
Listen for conversation.message.created so a scheduler sees the caregiver’s reply.
BloomText · HTTP
POSThttps://api.bloomtext.com/v1/conversations/{caregiverConversationId}/messagesAuthorization: Bearer bt_live_…Idempotency-Key: <unique-request-key>Content-Type: application/json{"body":"Today’s 3:00 PM session is cancelled. We will text you to reschedule."}
BloomText · HTTP
POSThttps://api.bloomtext.com/v1/conversations/{staffingConversationId}/messagesAuthorization: Bearer bt_live_…Idempotency-Key: <unique-request-key>Content-Type: application/json{"body":"Open slot: today 3:00 to 5:00 PM, north clinic. Reply if you can cover."}
Connect CentralReach and BloomText to your AI agent
An ABA practice runs on a lot of small checks: which sessions still need converting, whose authorization is about to end, which families need to hear about a schedule change. An agent with CentralReach data and BloomText can do those checks and send the messages.
1. Add the BloomText MCP server
Any MCP client, such as Claude, Cursor, or your own agent, can read and send BloomText messages with your API key.
You give the agent a small CentralReach tool that gets a one-hour token with your client credentials, sends your CR API key, and calls only the endpoints your API user has permission for. CentralReach does not document an MCP server or an AI connector of its own. Third-party connectors that automate the CentralReach web app are not CentralReach products, so check them against your API Addendum before you use one.
3. Tell it what to do
The agent calls your CentralReach tool for this week’s appointments at one clinic.
It keeps the sessions that still need converting before the lock date.
It posts a summary in the clinic’s team conversation with initials and times.
It reads replies in that thread and reports which RBTs haven’t answered.
Example prompt
Using CentralReach, list this week’s sessions at the north clinic that are not yet converted to timesheets. Post one summary in the north clinic team conversation in BloomText with staff initials and session times, no client names. Tomorrow at 10 AM, tell me who still hasn’t replied.
Messages the agent sends appear under its app user’s name, and an organization admin can revoke its key at any time. Read the MCP docs.
CentralReach API FAQ
Does CentralReach have an API?
Yes. CentralReach publishes a REST API over HTTPS with JSON at partners-api.centralreach.com, for managing practices, clients, staff, and more. The public reference covers authentication and shows one example call, reading an employee contact. The full list of endpoints you can use comes through your CentralReach representative.
How do I get CentralReach API access?
Talk to your dedicated CentralReach representative. They provision a client ID and client secret for the OAuth client-credentials flow, plus a CR API key issued per organization. The API Addendum licenses the API to customers with an active API subscription, lets CentralReach set usage limits, and does not allow sublicensing.
Why does my CentralReach API call return 401 or 403?
CentralReach’s response code table says a 401 usually means the Authorization header is wrong; it should read "Authorization: Bearer" followed by your token. A 403 before authentication means the x-api-key header is missing or wrong. A 403 after authentication means your API user lacks permission for that endpoint. Tokens expire after an hour, so request a new one when calls start failing.
Does CentralReach have text messaging for families?
CentralReach has a Messages module, and families can message staff securely through the Client Portal. Its Client Portal sheet says clients can opt in to email or text notifications about those messages. Practices add BloomText when they want staff chat and caregiver texting in one place, driven from their own code through the BloomText API.
Can I connect CentralReach to ChatGPT, Claude, or another AI agent?
Yes, through tools you build. Any MCP client can reach BloomText with the BloomText MCP server. For CentralReach data, the agent calls a tool that uses your approved credentials, because CentralReach does not publish its own MCP server or AI connector.
Is it HIPAA compliant to text ABA families from CentralReach data?
It can be, if each system that touches the data is covered. BloomText issues API keys only to organizations with a signed BAA. On the CentralReach side, confirm your Business Associate Agreement covers the data your integration reads. Keep texts to logistics like session times and cancellations, and leave programs, goals, and payer details out.
Getting CentralReach API access
CentralReach's API is available to customers with an active API subscription. Your representative issues a client ID, a client secret, and an API key.
Request API access on CentralReach's API page.
Get your client ID, client secret, and CR API key from your representative.
Exchange them for a one-hour token and call the endpoints your API user is allowed to use.
Get a BloomText API key
API keys are issued to organizations with a signed BAA. Book a short call, tell us what you’re building, and we’ll set up your key. Don’t include PHI when you book.
CentralReach API AddendumAPI license for customers with an active API subscription, usage limits, no sublicensing
CentralReach Scheduling PlaybookAppointments linked to authorizations and service codes, conversion to timesheets and billing entries, lock dates, cancellation reasons