Skip to content
iMessage APIs
All answers

For developers

Which iMessage APIs have a free sandbox?

Sendblue, Miss Blue, LoopMessage and Blooio all offer a free sandbox, and Photon has a free tier. A sandbox gives you full API access without a customer-facing number, so you can build, test and run CI against a real API indefinitely rather than against mocks.

What each one gives you

ProviderSandboxNotable limit
SendblueFreeNo customer-facing number
Miss BlueFreeAPI testing before launch
LoopMessageFreeCapped at 5 contacts
BlooioFreeGenerate a client from their OpenAPI spec
LinqTrialTemporary test number
PhotonFree tierRuns on your own Mac and Apple ID
Checked August 2026.

The four-command test

  1. Send one message to your own phone with curl. Confirm it arrives blue.
  2. Point `status_callback` at a request bin and watch the delivery events arrive, and how fast.
  3. Reply from the phone and watch the inbound webhook fire.
  4. Send to a number you know is on Android and see what the provider actually did — fell back to SMS, silently dropped it, or returned an error you are not handling.

Run it against two providers at once

Same messages, same recipients, same hour. Comparative data beats absolute data, and both sandboxes are free. Almost nobody does this, and it is the highest-value hour available in this category.

Use the sandbox as your CI target

Pointing tests at a real sandbox rather than mocks means your suite catches API changes instead of asserting against a fixture that drifted six months ago. Capture one real payload of each event type as a fixture the first time you see it, and replay those in CI for the paths that only fire in production. The tooling.

The developer hub.