SimGate
Use casesIntegrationsCompareBlogGet started
Use cases

Bulk SMS notifications from your own SIM

Send updates and notifications to your contacts from your own number, billed at a flat monthly rate instead of per message. Built for responsible, consented messaging.
Flat monthly cost
Your own number
Simple loop over the API
Delivery logs
Start freeBrowse use cases

Predictable cost for notification sends

Sending the same update to many contacts is where per-message pricing hurts most. SimGate's flat monthly plans give you a generous allowance so a notification batch doesn't come with a surprise bill.

You send in bulk by looping over your recipient list and calling the send endpoint for each one, respecting your plan's daily and monthly limits.

Send responsibly

Bulk messaging is for recipients who opted in. Always honor consent and unsubscribe requests, follow local SMS regulations, and avoid unsolicited marketing — it protects your number and your deliverability.

How bulk sending works

1
Build your list

Collect opted-in recipients in your own system.

2
Loop and send

Iterate the list, calling /v1/sms/send for each, pacing within your plan limits.

3
Track

Watch delivery state in logs and via each returned messageId.

Send to one recipient (repeat per contact)

javascript
1
const res = await fetch("https://api.simgate.app/v1/sms/send", {
2
method: "POST",
3
headers: {
4
"x-api-key": process.env.SIMGATE_API_KEY,
5
"Content-Type": "application/json",
6
},
7
body: JSON.stringify({
8
deviceId: "android-5q15b182f2704gbz",
9
phoneNumber: "+1234567890",
10
message: `Your code is ${code}`,
11
}),
12
});
13
14
const { messageId } = await res.json();

Frequently asked questions

How many messages can I send?

Each plan includes a daily and monthly allowance. Choose a plan that covers your batch sizes, and pace sends to stay within the daily limit.

Is this for marketing blasts?

SimGate is best for consented notifications and updates. Unsolicited marketing risks your number's reputation and may violate local law — always message people who opted in.

Can I see which messages were delivered?

Yes — every send returns a messageId and appears in your logs with its delivery state.

Keep exploring

Twilio alternative

Send and receive SMS from your own number and SIM at a flat monthly price — no per-message fees.

n8n

Send SMS from any n8n workflow with an HTTP Request node — no custom node required.

Appointment reminders

Cut no-shows with SMS reminders sent from your business's own number.

Turn your phone into an SMS API

Send and receive SMS from your own SIM at a flat monthly price. Install the app, connect a device, and call the API in minutes.

Start free