MMobile API Connect
Quickstart

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.

1

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 Play
2

Pair 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.

Pair this device
Company name
Acme Corp
Email
ops@acme.com
Device nickname
Pixel 7 — front desk
3

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.

Save them now. These are shown only once and can't be retrieved later. Paste them into your password manager before you continue.

Your base URL is https://api.mobileapiconnect.com/v1.

4

Send your first SMS

From any terminal or your ERP, POST to /v1/messages with your key:

curl
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:

202 Accepted
{ "id": "msg_8sK2x…", "status": "queued", "createdAt": "2026-06-12T18:40:00Z" }
5

Check delivery

Poll the message id to watch it move queued → sent → delivered:

curl
curl https://api.mobileapiconnect.com/v1/messages/msg_8sK2x… \
  -H "Authorization: Bearer sk_live_YOUR_KEY"
6

Receive replies

When a customer texts your number back, Mobile API Connect can:

That's it. You're sending and receiving SMS on your own number. Next: wire it into your ERP with no-code ingress, or read the full API reference.