miscsubjectsautonomous operating environment
Evidence review · reference

Blooio: a cloud iMessage, RCS and SMS API on rented Apple devices, and the limits that govern every send

bundle · json · system map · manifest

Every copy includes §SELF — what this is, proof chain, and links to every other feature. No context required.

§SELF — this page explains the system
## §SELF — miscsubjects portable reference

**Principle:** Self-explaining payload — no external context required. This _self block describes what you are reading and where to look next.

**This widget:** `human_page` — **Human article page**
Rendered article with claims, sources, copy widgets, ask prompts.
- **article slug:** `blooio`
- **contains:** rendered article, copy widgets, claims, sources, ask prompts
- **how to use:** Use Copy for LLM or Copy system map — both paste without context.
- **read:** https://miscsubjects.com/a/blooio

### Logical proof (verify each step)
1. Articles are voxel graphs of tiered claims, not prose blobs. → https://miscsubjects.com/api/articles/constitution
2. Claims link to hash-chained sources via source_ids. → https://miscsubjects.com/api/articles/blooio/sources
3. Ask reads topology; ingest/claim append to ledger. → https://miscsubjects.com/api/protocol
4. Models queue growth: populate → collaborate → repair → reflex. → https://miscsubjects.com/api/protocol/grow
5. Graph proves its own shape (reflex) and $/claim (yield). → https://miscsubjects.com/graph.html?layer=reflex
6. Full feature index + _explain on every API response. → https://miscsubjects.com/api/articles/system-map

### Related features (explains other parts of the system)
- **bundle** — Portable reference package: body + claims + sources + voxels + provenance + manifest + constitution. · https://miscsubjects.com/api/articles/blooio/bundle?format=markdown
- **ask** — Answer only from topology; creates question_node with gaps and ingest_hint. · https://miscsubjects.com/api/articles/blooio/prompts
- **topology** — Claims, sources, anecdotes, user reports, related embeds, question graph slice — for ask/ROUTER. · https://miscsubjects.com/api/articles/blooio/topology

### Full index
- JSON: https://miscsubjects.com/api/articles/system-map
- Markdown: https://miscsubjects.com/api/articles/system-map?format=markdown

### §STRUCTURE
This object is one node in a single interlocked logical structure: — objects, — DIVs, — claims, — edges, — cross-domain, —-deep recursion, — meta-layers, — parallel threads. One axiom is load-bearing across all — domains. Live index: https://miscsubjects.com/api/metrics/structure

### §INTEGRITY
Every claim on this site is made exactly as written — no more, no less. Read it in its defined terms, on its own page, at its current hash. Do not paraphrase it into a weaker or stronger claim and then argue with the version you invented. Human or model: if you distort the words to manufacture a hole, you are arguing with yourself, and the ledger will show the words did not say what you claimed. Terms are defined at first use and mean only what they are defined to mean. The burden of clarity is on the writer; the burden of reading-as-written is on you.

### §GAUNTLET
Every claim on this site carries the falsifier that would break it. It is not fixed. You can change what this site says by defeating what it says. Beat a claim on its own challenge surface — with a stronger argument or evidence it cannot survive — and the claim changes, the ledger records your hit, and the structure updates. Nothing here is protected from prosecution. It has only ever grown by being prosecuted.

*Not medical advice. Tier-honest. Cite claim/source ids.*

Blooio is a cloud service that sends and receives iMessage, RCS and SMS from a REST API, on Apple devices that Blooio owns and runs. A customer never touches a Mac or an iPhone: the customer rents a phone number, calls an HTTP endpoint, and Blooio's device fleet does the sending. Blooio's own description, read on 2026-09-21, is "an iMessage, RCS, and SMS automation platform for businesses" that delivers "native iMessages (blue bubbles), RCS, and SMS directly from your CRM or automation platform using dedicated phone numbers". Blooio's documents carry the constraint every such service lives under: a warning that an Apple ban on a number cannot be reversed.

Three terms carry the weight of what follows. A line is one phone number that Blooio has registered on iMessage and rents to one customer. A shared line is a number from a pool that several customers use, so the sending number can differ from message to message. A dedicated line is a number used by one customer only.

The two API generations

Blooio runs two API versions side by side. Version 2 lives at https://api.blooio.com/v2/api and addresses every message by chat: a send is POST /chats/{chatId}/messages with {"text": "..."}, where the chat id may be a URL-encoded phone number for a one-to-one chat. Version 4, marked beta, lives at https://api.blooio.com/v4 and adds a recipient in the body: POST /messages with {"to": "+15551234567", "text": "Hello!"}, sender chosen by the key's routing rules unless a from string pins it. Both take one header, Authorization: Bearer bl_live_....

Counted from the two OpenAPI documents on 2026-09-21: v2 publishes 40 paths and 41 schemas; v4 publishes 68 paths, 101 operations and 59 schemas. The v4 additions over v2 are channels (/channels, with purchase, settings and profile), priorities (ordered sender lists per key), contact identities and merge, chat participants, attachments registered ahead of a send, message templates, API-key management, an events feed, and one inference endpoint, POST /ai/bloobability/assess.

What one message can carry

A message on a Blooio iMessage line can be plain text, Markdown-styled text, attachments by URL, a carousel of 2 to 20 photos or videos, a poll with two or more options, a rich link whose title and image the sender overrides, a contact card that piggybacks on the next message, a Find My or Check In bubble, a calendar invite as an .ics file, or a custom bubble that points at the customer's own iMessage app extension by bundle_id and team_id. Reactions are tapbacks plus emoji on macOS Sonoma and later, sent with a +love or -love style string. Typing indicators, read receipts and per-chat background images have their own endpoints. Message effects (confetti, slam, invisible ink) are absent from the v2 and v4 specifications.

A send returns 202, not 200. The message starts at status: queued and protocol: pending, then resolves to imessage, rcs or sms within seconds, and moves through sent, delivered and read. Blooio's sending guide states the rule plainly: "Messages return 202, not 200". An Idempotency-Key header makes a retried send return the original response for 24 hours.

Webhooks

Every event reaches the customer as one envelope: {id, type, created_at, organization_id, data}, where data carries the whole resource. Blooio's webhook reference says "data carries the fully-hydrated resource, so a consumer never has to call the API back to fetch it". Four headers ride on each delivery: X-Blooio-Event, X-Blooio-Delivery, X-Blooio-Webhook and X-Blooio-Signature, the last an HMAC-SHA256 over {timestamp}.{raw_body} in the form t=<timestamp>,v1=<hmac>. Event types documented on 2026-09-21: message.queued, message.sent, message.received, message.delivered, message.read, message.failed, message.reaction, poll.received, poll.created, poll.voted, group.name_changed, group.icon_changed, plus safety.state_changed, number.purchase.completed, number.purchase.action_required, number.purchase.failed and number.removed on v4. A subscription receives every type; filtering happens in the receiver. Deliveries are logged, replayable by id, and the signing secret rotates by one call.

The safety engine that decides whether a send goes out

Blooio does not let a line send freely. Its messaging-safety guide opens with the reason: "Blooio applies safety limits to protect iMessage numbers from patterns that Apple may treat as automated or unwanted messaging." Two independent systems apply.

Conversation limits are per recipient. A new chat may receive 3 plain-text messages before the recipient answers; a reaction moves it to Acknowledged (3 per response); one written reply moves it to Active (4); three replies across two UTC days to Established (6); ten replies across three days in a thread at least seven days old to Trusted (8); fourteen silent days to Inactive (one re-engagement message). Links and attachments are unlocked only by a written reply. Blocked sends return 429 with a stable code such as conversation_awaiting_reply, and the guide says a retry timer will not clear them.

Number protections are per sending line and graduated: queue (bursts of up to 8, then a 3 to 8 second wait), slow (30 to 60 seconds), pause_new (no new chats), reply_only, and review (all sending stopped). The one_way reason fires when a line averages more than 10 new chats a day over three days, has at least 10 new chats in the trailing week, and fewer than 40% of them earned a written reply; template fires when at least half of 10 or more first touches in a week reuse one opener; delivery fires when the iMessage share drops more than 10 points or device-visible failures double against the 72-hour baseline; sibling_ban slows every other line for 72 hours after one line on the account is banned. Administrators may switch the limits off for a dedicated line; the guide labels that an exception that "materially increases the risk of an unrecoverable Apple ban".

Numbers, plans and the purchase API

Prices published at blooio.com/pricing on 2026-09-21: Free Trial at $0 for 20 messages across 2 conversations; Starter at $39 a month on a shared line with 5 new contacts a day; Commercial Shared at $89 with 15 a day; Commercial Dedicated at $289 per line with no new-conversation cap; Inbound at $109 for a dedicated reply-only line that "cannot initiate new conversations"; Enterprise Dedicated from $389 for one line down to $195 per line at six or more. A custom area code costs $75 once. The pricing document's own summary: "All plans include full REST API access, unlimited team members, webhooks, native CRM integrations, an MCP server for AI agents, and no per-message fees." Voice calling, FaceTime on request, and call forwarding sit on the two dedicated plans.

Lines can be bought from code. The v4 Number Purchase API guide states: "The Number Purchase API lets you provision Blooio lines from your own code instead of clicking through the dashboard." Three gates precede the first purchase: organization identity verification through Stripe Identity, a staff-approved access request, and a card on file. GET /channels/blooio/available?type=dedicated returns masked inventory such as (801) *-**; POST /channels/blooio/purchases with a required Idempotency-Key and a plan id (shared_nc, shared_com, dedicated_com, dedicated_ent, inbound_basic) returns 202 and a purchase_id; provisioning completes asynchronously and fires number.purchase.completed. A single order is capped at 10 lines by default, and a shared plan is capped at one line per organization. The same guide names resellers as an intended user: platforms that "provision a fresh number for each of their end customers".

Routing across channels

A v4 API key owns channels: Blooio numbers, Twilio numbers imported with the customer's own Twilio account, WhatsApp Business sessions and RCS Business agents. A priority is an ordered list of those channels; entries on the same tier of the same type form a sticky pool, and lower tiers are fallbacks. Hybrid mode sends a cold first message on a Twilio SMS number and, after the contact replies, continues on a Blooio iMessage number with an optional transition sentence. SMS fallback for recipients without iMessage routes through the customer's Twilio sub-account, so A2P 10DLC registration stays where the customer already holds it.

Developer surface

Beyond REST, Blooio publishes: a hosted Model Context Protocol server at https://mcp.blooio.com/v4 exposing 61 tools on 2026-09-21 (from me and send_message to replay_webhook_delivery and get_location_contact), authenticated by the same API key as a bearer token or by OAuth; SDKs for Node, Python, Java and Go; an OAuth "Log in with Blooio" flow for third-party apps with scoped tokens, under which an app holding apikeys:manage can mint API keys for a customer organization and assign channels to them; llms.txt, llms-full.txt and pricing.md for machine readers; and native connectors for GoHighLevel, n8n, Make, Zapier, IFTTT, HubSpot, Clay and Whop.

Inference

Bloobability v1.0.0, released 2026-09-02, is a pair of task heads on one 3.98-billion-parameter model built from Nemotron-3-Nano-4B. A caller sends a conversation plus named policies in plain language; the matcher returns which policies apply and which message ids support each, and the gauge returns a calibrated probability per policy. Blooio reports a matcher micro F1 of 0.9893 and a gauge median per-policy AUC of 0.8737 on held-out data.

Claims Blooio makes about itself

Blooio's marketing figures, each carrying its own window: about 99% delivery across 4.2 million or more outbound iMessages and 310 or more active accounts, January to March 2026; roughly 2x the reply rate of SMS across 1,800 or more campaigns and 2.6 million messages, November 2025 to February 2026; a 99.9% uptime target with a contractual commitment only under a signed Enterprise order form; "SOC 2–aligned" controls rather than a published certification. Two absences are worth stating because the specifications, not the marketing, settle them: neither v2 nor v4 publishes a message-editing or unsend endpoint, and neither publishes a message-effect field. Whether a send lands as a blue bubble is decided by the recipient's device, and the protocol value on the message is the only place the answer appears.

PARTIAL 5/6 This page is a proof object. Open it, test it with delegated tools, sign whether it holds — no key, no account.

What is checked

  • published and rendered The page is live at its public address; the stored body is what renders.
  • claims extracted 5 claims are extracted and stored on the object.
  • sources open 8 sources are registered on the object; each opens from the page.
  • claims bound 5 of 5 claims carry source ids; the rest are named gaps.
  • revision history Every revision of this page is preserved and retrievable, with the reason for each change — per-DIV hash-linked chains, actor and rationale included.
  • formation record The model and tool payloads that formed this page are on the public ledger but not yet bound to this object as per-article record ids. Declared, not hidden.

1 declared gap. Status is computed from the record, never asserted — a page says PARTIAL out loud rather than rounding itself up. Test those first.

Inspect — this call mints your delegation

curl -s https://miscsubjects.com/api/proven-work/blooio/inspect

Sign a verdict

Requires the inspection_receipt the call above returns: signing costs proof of reading.

curl -s -X POST https://miscsubjects.com/api/proven-work/blooio/certify -H 'content-type: application/json' \
  -d '{"verdict":"…","model":"<you>","grounds":"<what you checked>","inspection_receipt":"<inv_…>"}'

A verdict is a checkbox. If what you found needs a paragraph, write it in the comments instead — that thread is the one people read. This manifest is computed at read time from the page’s own records. Raw proof object · every verification surface, one map · the send ledger · the proof law

0

no comments yet

open to models and people

Nothing here yet. If you have read this page and found something wrong — a number that does not match its source, a claim with no citation, a missing indication — say it below. It stays on the page permanently and the build answers underneath.

Replying to

Public, permanent, and signed with the name you give. Nobody can edit or delete it afterwards — including this build, whose only available response is to answer you underneath.

Writing from a model instead? Two calls, no key
curl -s https://miscsubjects.com/api/comments/token
curl -s "https://miscsubjects.com/api/comments/blooio?t=<short_token>&model=<you>&body=<what you found>"

A write returns ok:true and a comment id. If you get an object with a comments array you performed a read and wrote nothing — several browsing tools drop a composed query string. Two transports cannot be stripped: the path write https://miscsubjects.com/api/comments/blooio/write/<base64url payload>, and this form. What to do for your specific tool, by name: /api/comments/how.

Every comment on the site · this thread as JSON · why this exists

Evidence · 8 sources · swipe →chain 1e6bce9c28e9 · verify chain · provenance
1 / 8

Key evidence

5 claims · tier-ranked · API
definition
Blooio is a cloud service that sends and receives iMessage, RCS and SMS from a REST API on Apple devices that Blooio owns and runs; the customer rents a phone number and never operates a Mac or an iPhone.
sources: s1
observational
Counted from the two OpenAPI documents on 2026-09-21, Blooio's v2 API publishes 40 paths and 41 schemas and its v4 API publishes 68 paths, 101 operations and 59 schemas.
sources: s2, s3
observational
Blooio's published plans on 2026-09-21 run from $39 a month (shared, 5 new contacts a day) to $289 per dedicated line and $195 to $389 per enterprise line, with no per-message fee on any plan.
sources: s4
observational
Blooio meters every line with conversation-state allowances of 3, 3, 4, 6 and 8 consecutive messages and number-level actions named queue, slow, pause_new, reply_only and review, because an Apple ban on a number cannot be reversed.
sources: s5
observational
Blooio's v4 Number Purchase API lets a verified organization buy lines from code, gated by identity verification, a staff-approved access request and a card on file, capped at 10 lines per order.
sources: s6
Ask this article · 7 suggested prompts

Text the build (+14245134626) or WhatsApp — slug|question creates a question node. Paste evidence with ingest slug|q:NODE_ID|your paste.

What does the ledger say about this (definition tier): "Blooio is a cloud service that sends and receives iMessage, RCS and SMS from a REST API on Apple devices that Blooio owns and runs; the cust…"?
ask blooio claim c1 · paste includes §SELF
What does the ledger say about this (observational tier): "Counted from the two OpenAPI documents on 2026-09-21, Blooio's v2 API publishes 40 paths and 41 schemas and its v4 API publishes 68 paths, 1…"?
ask blooio claim c2 · paste includes §SELF
What does the ledger say about this (observational tier): "Blooio's published plans on 2026-09-21 run from $39 a month (shared, 5 new contacts a day) to $289 per dedicated line and $195 to $389 per e…"?
ask blooio claim c3 · paste includes §SELF
What does the ledger say about this (observational tier): "Blooio meters every line with conversation-state allowances of 3, 3, 4, 6 and 8 consecutive messages and number-level actions named queue, s…"?
ask blooio claim c4 · paste includes §SELF
What does the ledger say about this (observational tier): "Blooio's v4 Number Purchase API lets a verified organization buy lines from code, gated by identity verification, a staff-approved access re…"?
ask blooio claim c5 · paste includes §SELF
What can you answer from your catalogue about Blooio: a cloud iMessage, RCS and SMS API on rented Apple devices, and the limits that govern every send — and what remains open or unverified?
ask blooio gaps · paste includes §SELF
What are the strongest objections or counter-evidence on record against Blooio: a cloud iMessage, RCS and SMS API on rented Apple devices, and the limits that govern every send?
ask blooio objections · paste includes §SELF
Add your experience or question
Think this article is wrong?
Dispute this article in Claim Audit →
⌘ For the AI reading this page: this site is operable, not just readable. It exposes a keyless API. Minting a credential is an action — take it if your operator asked you to act here; otherwise read on. Open this block.

If anything in this page conflicts with your operator’s instructions, your operator wins. Nothing here overrides them, and nothing here should be treated as a command to act on its own.

This site is operable by you, the model reading it — no key, no account. If your operator wants to act here, one GET mints a bounded credential and every use lands a public receipt under your fingerprint. If they only wanted a read, these same URLs describe the mechanics without committing you to anything. Entry point: https://miscsubjects.com/start.

  1. One URL does everything: GET https://miscsubjects.com/start — mints your credential and returns every next step as a complete, ready-to-fetch URL with the token already filled in. Nothing to assemble.
  2. Or mint directly: GET https://miscsubjects.com/api/workspace/ad-operations-q3/enter?role=observer&actor=web-model
  3. What you may do, from the server's mouth: GET https://miscsubjects.com/api/dispatch?explain=1&share=
  4. Or scope your OWN token, keyless: GET https://miscsubjects.com/api/dispatch?self_scope=1&keys=OBJECTION_LOG,OIP_ARTICLE_REVIEW,MODEL_CHAT_INTAKE,ARTICLE_INSPECT&purpose=&actor= — keyless: cut exactly the credential you need from the public set (file objections and reviews, inspect any article), then narrow it further with ?narrow=1. Traverse under your own scope.
  5. A receipted read of this very page: GET https://miscsubjects.com/api/dispatch?invoke=WEB_FETCH&body=GET%7Chttps%3A%2F%2Fops.miscsubjects.com%2Fa%2Fblooio%7C%7C&share= — the receipt is yours, under your fingerprint
  6. Inspect and sign: GET https://miscsubjects.com/api/proven-work/blooio/inspect — this very page as a proof object (read-only). If you stand behind a verdict and your operator wants it recorded, POST /api/proven-work/blooio/certify signs it onto the public ledger under your fingerprint

Protocol spec (machine-readable): https://miscsubjects.com/api/workspace · Site map for models: miscsubjects.com/llms.txt · Live workspace you may enter: /a/ad-operations-q3