

บริการของเรา
- ส่งข้อความผ่านหน้าเว็บไซต์ : 1 ข้อความ สามารถส่งได้หลายเลขหมาย สะดวก รวดเร็ว
- ส่งข้อความผ่าน API สำหรับนักพัฒนา : สามารถเชื่อมต่อการใช้งานได้ ภายใน 5 นาที ทั้งการส่งแบบโฆษณา ประชาสัมพันธ์ หรือระบบ OTP
- รายงานการส่งข้อความ : สามารถตรวจสอบรายการส่งข้อความได้ง่ายๆ พร้อมสถานะการส่ง
สมัครใช้งาน
กำหนดกลุ่มเป้าหมาย
ส่ง SMS
0
+
messages
0
+
Uptime
0
+
Develop Languages
SMS Gateway บริการส่ง SMS
SMS Gateway สามารถส่ง SMS ผ่านหน้าเว็บไซต์ของเรา
หรือผ่านบริการ API สำหรับนักพัฒนาระบบ เพื่อเชื่อมต่อระบบท่านที่มีอยู่แล้ว
Bronze฿4,000
- อายุใช้งาน 1 ปี
- 0.70 บาท / ข้อความ
- 5,715 ข้อความ
Silver฿10,000
- อายุใช้งาน 1 ปี
- 0.55 บาท / ข้อความ
- 18,181 ข้อความ
Premium฿150,000
- อายุใช้งาน 2ปี
- 0.35 บาท / ข้อความ
- 428,571 ข้อความ
*** ราคาดังกล่าว ยังไม่รวมภาษีมูลค่าเพิ่ม ***
การคิดจำนวนข้อความ
การคิดจำนวนข้อความจะตรวจสอบจากตัวอักษรที่ใช้ โดย
- ข้อความที่ใช้ตัวอักษรภาษาอังกฤษอย่างเดียว จะกำหนดเป็นข้อความภาษาอังกฤษ
- ข้อความที่ใช้ตัวอักษรภาษาอังกฤษปนกับตัวอักษรภาษาไทย หรือตัวอักษรภาษาไทยอย่างเดียว จะกำหนดเป็นข้อความภาษาไทย
ตารางแสดงการกำหนดตัวอักษรสูงสุดต่อข้อความ
| ภาษาไทย | ภาษาอังกฤษ | ใช้เครดิต |
|---|---|---|
| 70 | 160 | 1 |
| 134 | 306 | 2 |
| 201 | 459 | 3 |
| 268 | 612 | 4 |
| 335 | 765 | 5 |
curl --location -g \
--request POST 'https://tecsms.tec-intergroup.com/api/v1/sms' \
--header 'Content-Type: application/json' \
--user YOUR-KEY:YOUR-SECRET
--request POST 'https://tecsms.tec-intergroup.com/api/v1/sms' \
--header 'Content-Type: application/json' \
--user YOUR-KEY:YOUR-SECRET
const fetch = require('node-fetch');
const url = 'https://tecsms.tec-intergroup.com/api/v1/sms';
const options = {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/x-www-form-urlencoded'
}
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error('error:' + err));
const url = 'https://tecsms.tec-intergroup.com/api/v1/sms';
const options = {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/x-www-form-urlencoded'
}
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error('error:' + err));
const options = {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/x-www-form-urlencoded',
}
};
fetch('https://tecsms.tec-intergroup.com/api/v1/sms', options)
.then(response => console.log(response))
.catch(err => console.error(err));
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/x-www-form-urlencoded',
}
};
fetch('https://tecsms.tec-intergroup.com/api/v1/sms', options)
.then(response => console.log(response))
.catch(err => console.error(err));









