Web sms free using your android phone
Turn an android phone into a free web sms gateway. See real costs, throughput numbers, integration examples with shopify and woocommerce, plus a clear pricing table.

TL;DR
You send web sms free by running FlixySMS on an android handset and using your carrier plan instead of per-message api fees. Throughput reaches 30-100 messages per minute per device. Integrations with shopify, woocommerce, and google sheets work through simple webhooks. Pricing starts free at 200 messages monthly and scales to enterprise quotas.
You can send web sms free by installing FlixySMS on an android handset and routing messages through your existing carrier plan instead of paying per-message fees to services like Twilio.
What web sms free actually means in practice
Most platforms charge between 0.0075 and 0.05 dollars for each outbound message. FlixySMS avoids that model by using the sms quota already included in your phone plan. A typical postpaid line in the united states covers 1000 messages per month at no extra cost, so the variable expense drops to zero once the flat subscription is paid.
The gateway itself runs on the handset. Messages leave the carrier tower exactly as they would from the default messaging app, which keeps delivery rates high and avoids extra filtering that hits many cloud apis.
How the android gateway works
Install the app from the play store, grant sms permissions, and connect the device to the same local network as your server. The app listens for http requests on port 8080 and forwards them to the carrier radio. No port forwarding or public ip address is required when you use the included relay mode.
Supported message lengths
Single segment messages stay under 160 characters. Anything longer triggers automatic concatenation headers. The system splits a 320 character note into two segments and reassembles them on the receiving handset without extra user action.
Throughput numbers
One device handles 30 to 100 messages per minute depending on carrier throttling. Adding a second handset in parallel raises the ceiling to roughly 180 messages per minute before the carrier starts queuing.
Concrete integration examples
Shopify order confirmations arrive through the native webhook and trigger an outbound sms within three seconds. Abandoned cart reminders use the same flow but wait twenty minutes before firing.
WooCommerce stores can map order status changes to templates stored inside the app. Google Sheets bulk imports accept a csv with phone numbers and message text, then queue everything for the next available slot.
Custom webhooks work for any platform that can post json. A simple payload example looks like this:
{
"to": "+15551234567",
"text": "Your package left the warehouse at 14:32"
}
Pricing tiers and real quotas
Check current limits on the pricing page. The free tier allows 200 messages per month across one device. Pro raises the quota to 2000 messages and adds group management. Business unlocks scheduled sends and two-way auto-responders. Enterprise adds dedicated support and higher parallel device counts.
| Tier | Monthly messages | Devices | Key features |
|---|---|---|---|
| Free | 200 | 1 | Basic sending, delivery reports |
| Pro | 2000 | 3 | Groups, templates, webhooks |
| Business | 10000 | 10 | Scheduling, auto-responders |
| Enterprise | Custom | Custom | Priority support, sla |
Two-way conversations and auto-responders
Inbound messages land in the same dashboard. You can attach a keyword rule so that any text containing stop receives an immediate opt-out confirmation. Help triggers a short list of supported commands. The feature runs entirely on the android device, so no additional carrier short code is needed.
See the full workflow on the how it works page. Delivery tracking shows the exact timestamp when the carrier accepted the message and when the handset reported receipt.
Limitations you should know
The system inherits whatever throttling the carrier applies. During peak hours some networks drop to 15 messages per minute. Battery drain on the gateway phone averages 8 percent per hour when sending at 60 messages per minute.
Multi-segment messages count against your carrier quota as separate segments. A 300 character note therefore uses two messages from the plan.
Getting started steps
- Install the app on a dedicated android handset.
- Create an account at /dashboard.
- Generate an api key from the settings screen.
- Point your first webhook at the device ip and port 8080.
- Test with a single message before scaling to bulk lists.
For more details read the api documentation. If you run into carrier-specific quirks the faq section lists common workarounds.
The about us page explains the company focus on keeping sms costs predictable rather than chasing feature volume.
Contact the team through the contact form when you need help mapping a custom platform to the webhook format.
All current blog posts live under the blog section.
Start by signing up at /dashboard to see your first message leave the device within minutes.
Frequently Asked Questions
how do i send sms from a website for free+
Install FlixySMS on an android phone, connect it to your local network, and point your website webhooks at the device. Messages use your existing carrier allowance so the per-message cost stays at zero beyond the platform subscription.
does flixysms work with shopify+
Yes. The native shopify integration maps order events to sms templates. Abandoned cart and shipping notifications trigger automatically once the webhook is configured.
what is the message limit on the free plan+
The free plan allows 200 messages per month on a single device. Higher tiers increase the quota and add features such as scheduling and auto-responders.
can i receive replies with the android gateway+
Inbound sms appear in the dashboard. You can set keyword rules so messages containing stop or help receive automatic replies without any extra hardware.
how many messages per minute can one phone send+
A single handset typically handles 30 to 100 messages per minute. Carrier throttling determines the exact speed, and adding more devices raises total throughput linearly.