Send your first SMS in 5 minutes.
Mobile API Connect onboards through the app — install it, pair your phone, and that pairing creates your account and your API key. Then any system can send SMS with one REST call.
Install the Android app
Put the app on the phone whose SIM will send your SMS. This phone becomes your gateway.
Get it on Google PlayPair your phone
Open the app, enter your company name and email, and tap Pair this device. A 6-digit code is emailed to you — enter it within 10 minutes.
Copy your API key
After the code, the app shows your API key (sk_live_…) and a webhook signing secret (whsec_…) — and emails them too.
Your base URL is https://api.mobileapiconnect.com/v1.
Send your first SMS
From any terminal or your ERP, POST to /v1/messages with your key:
curl -X POST https://api.mobileapiconnect.com/v1/messages \ -H "Authorization: Bearer sk_live_YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{"to":"+6581230000","text":"Hello from Mobile API Connect"}'
You get back 202 immediately, and your paired phone sends the SMS within a second or two:
{ "id": "msg_8sK2x…", "status": "queued", "createdAt": "2026-06-12T18:40:00Z" }Check delivery
Poll the message id to watch it move queued → sent → delivered:
curl https://api.mobileapiconnect.com/v1/messages/msg_8sK2x… \ -H "Authorization: Bearer sk_live_YOUR_KEY"
Receive replies
When a customer texts your number back, Mobile API Connect can:
- Auto-reply with keyword rules — no code. Rules guide →
- Push it to your endpoint as a signed webhook. Webhooks guide →