Key Takeaways
- Send SMS from Python with requests or httpx against REST HTTPS/JSON — not a pip “Complete SDK” product from us.
- Bearer from environment; confirm live JSON in Developer Center.
- Persist message ids; accept ≠ delivered.
- You need a working Android phone with a SIM and SMS credit from your mobile operator. Operator message costs are yours—we do not sell carrier SMS balance. Service pricing is based on device count and total SMS sent through the gateway.
- Free canaries use 300 SMS lifetime — not Unlimited SMS.
Hub C: Python android sms gateway api send SMS. Hub: Android SMS Gateway API. Docs: SMS API documentation.
You need a working Android phone with a SIM and SMS credit from your mobile operator. Operator message costs are yours—we do not sell carrier SMS balance. Service pricing is based on device count and total SMS sent through the gateway. Pricing.
Python send path
Server-side workers only. Pair phones via setup. Prefer async workers for bulk; keep OTP on a separate pool.
requests/httpx + ENV is the client. A PyPI “official SDK” is not required to ship SMS.
requests/httpx — not an SDK package
JSON body fields come from OpenAPI. Optional deviceIds for multi-device. Language samples elsewhere are PHP/C# shapes — same wire format.
Client habits
| Habit | Do | Don’t |
|---|---|---|
| Secrets | os.environ | Commit .env |
| Timeouts | Always set | Hang forever |
| Retries | Backoff + Idempotency-Key | Blind triple-send OTP |
| Status | DLR/webhook | Trust first 200 |
Errors and retries
Map 4xx vs transport failures. Webhooks: Python receive webhook. DLR: delivery reports.
Checklist
- Staging key.
- Idempotency-Key on OTP.
- Message id persisted.
- Device online before prod cutover.
Next steps
OTP use case: OTP.
Related product pages
Jump to the live product docs for this topic—not another long-form article.
- SMS API documentationLive endpoint reference
- device and SMS volume pricingPlans and allowances
- Android SMS gateway product guideDefinition, product, and how to buy
- download the Android gateway appGet the APK




