Features
The ultimate solution for your messaging needs! Our free open-source Android-based SMS Gateway provides you with all the features you need to effectively manage your SMS communications.
Send SMS
Send SMS to any number from your dashboard or via REST API
Bulk SMS
Send SMS to multiple numbers at once
100% Free
No credit card required. No hidden fees. No strings attached.
Open Source
The entire codebase is open source and available on GitHub.
How It Works
How it works is simple. You install the app on your Android device, and it will turn your device into a SMS Gateway. You can then use the API to send SMS messages from your web applications.
Code Snippet
1import axios from 'axios'
2
3const BASE_URL = 'https://api.textbee.dev/api/v1'
4const API_KEY = 'YOUR_API_KEY'
5const DEVICE_ID = 'YOUR_DEVICE_ID'
6
7const response = await axios.post(`${BASE_URL}/gateway/devices/${DEVICE_ID}/sendSMS`, {
8 recipients: [ '+1234567890' ],
9 message: 'Hello World!',
10}, {
11 headers: {
12 'x-api-key': API_KEY,
13 },
14})
15
16console.log(response.data)
Support The Project
Maintaining an open-source project requires time and dedication. By becoming a patron or donating cryptocurrency, your contribution will directly support the development, including implementation of new features, enhance performance, and ensure the highest level of security and reliability.