My Sim · My SMS

Send SMS from your own Android SIM.

MySim SMS turns a phone into a private SMS gateway. Your system creates a message, the phone sends it as a normal carrier SMS, and you track delivery from the cloud. Android only.

How it works

Built for OTP, reminders, and business alerts — with your number, your device, and live admin control.

1

Install on Android

Sideload the gateway APK on a phone with an active SIM and log in.

2

Keep the gateway running

Allow SMS, notifications, and unrestricted battery so jobs are never missed.

3

Send via API

Your backend enqueues an SMS job. The phone claims it and sends through the SIM.

4

Confirm success

Poll job status until acked — success means the SIM accepted the send.

Why teams use MySim SMS

Clear control for operators who need local SIM delivery.

Real SIM delivery

Messages leave as normal SMS from the phone’s carrier number.

API for your backend

Create and upsert jobs securely with a system API key.

Per-user isolation

Each gateway account only sends its own messages.

Live admin console

See online status, gateway state, plans, and activity.

Always-on design

Foreground gateway + battery unrestricted for reliable sending.

Android only

Optimized for sideloaded Android gateway phones — not iOS.

Install the Android app

Gateway phones must stay online with an active SIM.

1

Get an account

Admin creates your user and plan in the console.

2

Install the APK

Allow unknown apps, install the APK, open MySim SMS.

3

Grant permissions

SMS, notifications, and unrestricted battery are required.

4

Confirm gateway running

Keep the sticky notification active while the phone should send SMS.

iPhone / iOS is not supported for the gateway app.

Permissions you must allow

Without these, jobs can stay pending.

PermissionWhy
Send SMSSends messages through the SIM
Phone stateHelps reliable telephony / SIM handling
NotificationsKeeps the gateway service visible
Unrestricted batteryStops Android from killing the gateway

Send an SMS with the API

Enqueue immediately. To schedule for later, call the API from your own cron at the desired time.

PUT https://sms.server.fitwellhub.com/api/system/sms-jobs/upsert
Header: X-System-Api-Key: YOUR_SYSTEM_API_KEY

{
  "id": "order-otp-1001",
  "userEmail": "gateway@clinic.com",
  "to": "+923001234567",
  "message": "Your OTP is 123456"
}