import urllib.request
import urllib.parse
url = "https://api.3yit.com/api/send-sms-single"
data = {
'sp_id': '908452',
'mobile': '60xxxx1234',
'content': 'Your verification code is 304231',
'password': 'your_password'
}
# 发送POST请求
data_encoded = urllib.parse.urlencode(data).encode('utf-8')
req = urllib.request.Request(url, data=data_encoded)
response = urllib.request.urlopen(req)
result = response.read().decode('utf-8')
const https = require('https');
const qs = require('querystring');
const data = qs.stringify({
sp_id: '908452',
mobile: '6017xxx1234',
content: 'Your verification code is 304231',
password: 'your_password'
});
const req = https.request({
hostname: 'api.3yit.com',
path: '/api/send-sms-single',
method: 'POST',
headers: {'Content-Type': 'application/x-www-form-urlencoded'}
}, res => {
let response = '';
res.on('data', chunk => response += chunk);
res.on('end', () => console.log(JSON.parse(response)));
});
req.write(data);
req.end();
import java.io.*;
import java.net.*;
public class SimpleSmsSender {
public static void main(String[] args) throws Exception {
String url = "https://api.3yit.com/api/send-sms-single";
String params = "sp_id=908452&mobile=601xxx01234&content=Your verification code is 304231&password=your_password";
URL obj = new URL(url);
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("POST");
con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
con.setDoOutput(true);
DataOutputStream wr = new DataOutputStream(con.getOutputStream());
wr.writeBytes(params);
wr.flush();
wr.close();
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuilder response = new StringBuilder();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
}
}
using System;
using System.Net.Http;
using System.Collections.Generic;
using System.Threading.Tasks;
class Program
{
static async Task Main()
{
var client = new HttpClient();
var values = new Dictionary
{
{"sp_id", "908452"},
{"mobile", "6017xxx1234"},
{"content", "Your verification code is 304231"},
{"password", "your_password"}
};
var response = await client.PostAsync("https://api.3yit.com/api/send-sms-single",
new FormUrlEncodedContent(values));
var result = await response.Content.ReadAsStringAsync();
Console.WriteLine(result);
}
} '908452',
'mobile' => '60172301234',
'content' => 'Your verification code is 304231',
'password' => 'your_password'
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
$result = json_decode($response, true);
echo $result['code'] == 0 ? "发送成功,消息ID: ".$result['msg_id'] : "发送失败: ".$result['msg'];
?>require 'net/http'
require 'uri'
uri = URI.parse("https://api.3yit.com/api/send-sms-single")
response = Net::HTTP.post_form(uri, {
'sp_id' => '908452',
'mobile' => '6017xxx1234',
'content' => 'Your verification code is 304231',
'password' => 'your_password'
})
puts response.body
5分钟接入
通用REST API接口,让技术团队轻松将短信功能无缝嵌入现有系统。提供Python、Node.js、Java、PHP等多语言SDK和详细文档,您可在30分钟内完成集成,实现自动化批量发送、定时发送和状态回调。
国际验证码短信套餐包
本价格包仅为国际短信验证码充值套餐价格通用验证码短信模版
- 英语:Your verification code is %6%. Please use it within 10 minutes.(%6%代表6位数字,不需要签名)
- 英语:[PayPal]Your PayPal payment verification code is %4%. This code expires in 15 minutes. (%4%代表4位数字,其中PayPal替换成您的品牌名称)
- 印地语:Apka verification code hai: %6%. Kripya isse kisi ke saath share na kare. (%6%代表6位数字)
- 西班牙语:Su código de verificación es: %6%. No lo comparta con nadie. (%6%代表6位数字)
- 法语:Votre code de vérification est : %6%. Ne le partagez avec personne. (%6%代表6位数字)
- 阿拉伯语:رمز التحقق الخاص بك هو %6%. لا تشارك هذا الرمز مع أي شخص. (%6%代表6位数字)
- 日语:認証コードは%6%です。誰にも教えないでください。 (%6%代表6位数字)
- 泰语:รรหัสยืนยันของคุณคือ %6%. โปรดอย่าแบ่งปันรหัสนี้แก่บุคคลอื่นYourAppName] (%6%代表6位数字)
- 俄语:Ваш код подтверждения: %6%. Никому не сообщайте этот код. (%6%代表6位数字)
使用流程
1
账号注册
注册成功后,开通国际验证码短信OTP
2
协议配置
配置国际标准SMPP协议,或配置短信API HTTPS接口
3
对接调试
模拟生产环境进行对接联调,帮助避免大量未知问题
4
生产运营
提交发送任务,实时查看发送任务,或配置推送状态报告
常见问题
我们提供的是发送验证码服务。您可以通过我们的API向全球用户的手机号发送短信验证码,用于用户注册、登录、支付验证等场景。我们不提供接收验证码的功能。
支持向全球200多个国家和地区发送短信,重点覆盖。东南亚:印尼、菲律宾、泰国、越南、马来西亚 拉美:巴西、墨西哥、哥伦比亚、智利 中东:阿联酋、沙特阿拉伯、埃及 欧洲:德国、法国、英国、波兰 其他:印度、南非、美国、澳大利亚等 具体国家列表可在控制台查看或联系客服获取。
可以,个人开发者可使用,无需实名认证。我们支持个人账户快速接入,无需企业资质即可发送短信。
可以。我们提供默认共享通道,注册后即可使用系统分配的虚拟号码或短码发送短信,无需单独申请Sender ID。 如需使用自定义Sender ID(如品牌名称),可后续在控制台提交申请,审核通过后启用。

















