BetaThe V4 API is in beta — endpoints and functionality may change.

Hybrid mode

Twilio-first outreach that continues on Blooio iMessage after the contact replies.

Hybrid Outbound (hybrid mode) lets one API key own both Twilio and Blooio numbers and automatically pick which protocol to use per contact.

What it does

  1. Cold outreach — first messages go out on Twilio SMS (cheap, high reach).
  2. After they reply on that Twilio line — later sends switch to a Blooio iMessage number.
  3. Optional transition text — on the first Blooio message, Blooio can send a short intro before or after your message (configured in the dashboard).

This is different from the manual “SMS blast, then tell them to text your iMessage number” pattern. Hybrid mode keeps one API key and one send call; routing flips for you.

Requirements

  • The API key (or integration) has at least one Twilio number and one Blooio number assigned.
  • Hybrid Outbound is enabled for that owner in the dashboard (Numbers / Channels hybrid controls).
  • The send is 1:1 phone (not a group, email, or other identifier).
  • You are not forcing a path that skips hybrid (for example an explicit from_number that takes you off the hybrid path — omit from_number for automatic hybrid selection).

If hybrid is off, or the key only has one protocol, normal number pool selection applies.

Send like normal

curl -X POST 'https://backend.blooio.com/v2/api/chats/%2B15551234567/messages' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{ "text": "Hey — quick question for you" }'
Try it
  • No prior Twilio reply from this contact → Twilio sender from the hybrid group.
  • Contact has replied on a group Twilio number → Blooio sender (sticky once chosen).
  • First Blooio message may include your configured transition text (pre or post).

Configure in the dashboard

  1. Assign both Blooio and Twilio numbers to the same API key (hybrid unlocks this mix).
  2. Enable Hybrid Outbound for that key / hybrid group.
  3. Optionally set a transition message and whether it sends before or after your first iMessage.

When not to use hybrid

  • Pure iMessage product flows — use a Blooio-only key.
  • Pure SMS / A2P campaigns that should never move to iMessage — Twilio-only key.
  • Group chats — hybrid is 1:1 phone only.