Download a file, add your API key, and start sending SMS in minutes. No complex setup required.
Three simple steps to start sending SMS programmatically
Open SMS Gateway Master app on Android → Settings → copy your unique API Key.
Choose the language you use. Download the ready-to-use file from the list below.
Open the file, paste your API key in the CONFIG section at the top, and run it.
All files are self-contained. No extra libraries needed (except where noted).
Send single or bulk SMS. Includes a ready function for list-based sending. Requires pip install requests.
# CONFIGURATION API_KEY = "YOUR_API_KEY_HERE" API_URL = "https://us-central1-..." # Send SMS send_sms("+40712345678", "Hello! 🚀")
Drop it on any PHP server. Uses built-in cURL — no Composer needed. Send single or bulk SMS instantly.
// CONFIGURATION define('API_KEY', 'YOUR_API_KEY_HERE'); define('API_URL', 'https://...'); // Send SMS sendSms('+40712345678', 'Hello! 🚀');
Uses native fetch (no npm install needed on Node 18+). Async/await, single and bulk sending included.
// CONFIGURATION const API_KEY = 'YOUR_API_KEY_HERE'; const API_URL = 'https://...'; // Send SMS await sendSms('+40712345678', 'Hello! 🚀');
Import into Excel VBA Editor. Send SMS from a spreadsheet list (Column A: phone, Column B: message). No add-ins needed.
' CONFIGURATION Const API_KEY = "YOUR_API_KEY_HERE" ' Send from Sheet Sub SendSMSFromSheet() ' A=Phone | B=Message ' C=Status (auto-filled) End Sub
Paste into Google Sheets → Extensions → Apps Script. Adds a custom 📱 SMS Gateway menu. Send SMS from any sheet row. Free.
// CONFIGURATION var API_KEY = 'YOUR_API_KEY_HERE'; // Adds menu to Sheet: // 📱 SMS Gateway → // Send SMS from Sheet // Send Test SMS
Shell script using standard curl. Works on any Linux/macOS server. Use in cron jobs, CI/CD pipelines, or terminal.
# CONFIGURATION API_KEY="YOUR_API_KEY_HERE" # Usage: ./send_sms.sh "+40712345678" \ "Hello! 🚀"
Import the .bas module in 3 clicks — no macro recording needed
In Excel press ALT + F11 to open the Visual Basic Editor.
In the VBA Editor menu: File → Import File… and select the downloaded .bas file.
Find API_KEY = "YOUR_API_KEY_HERE" at the top of the module, paste your key, and run SendTestSMS.
Put phone numbers in column A, messages in column B, then run SendSMSFromSheet. Status appears in column C.
Test the API live in your browser — no code needed. Or download the app and get your API key in minutes.