API Docs
Service list
| 参数 | 说明 |
key | Your API key |
action | services |
Example response
[
{"service": "telegram", "name": "Telegram"},
{"service": "whatsapp", "name": "WhatsApp"}
]
Prices
| 参数 | 说明 |
key | Your API key |
action | prices |
service | Service code |
Example response
[
{"country": 6, "country_name": "Indonesia", "count": 5230, "price": "0.14"},
{"country": 22, "country_name": "India", "count": 3100, "price": "0.08"}
]
Buy number
| 参数 | 说明 |
key | Your API key |
action | buy |
service | Service code |
country | Country ID |
Example response
{
"order_id": 23501,
"phone": "628123456789",
"cost": "0.14"
}
Order status
| 参数 | 说明 |
key | Your API key |
action | status |
order_id | Order ID |
Example response
{
"status": "completed",
"code": "123456",
"phone": "628123456789"
}
Cancel order
| 参数 | 说明 |
key | Your API key |
action | cancel |
order_id | Order ID |
Example response
{
"ok": true,
"msg": "已取消"
}
User balance
| 参数 | 说明 |
key | Your API key |
action | balance |
Example response
{
"balance": "100.84",
"currency": "USD"
}