From numbers

See which normal phone numbers can send your SMS, and your default.

GET/api/v1/sms/from

Authorization: Bearer sk_sms_…

Use a value from numbers as the optional from field on Send SMS, or pass "random" to rotate.

Examples

curl https://waaguan.com/api/v1/sms/from \
  -H "Authorization: Bearer sk_sms_YOUR_SMS_SECRET_KEY"

Response

{
  "status": true,
  "message": "From numbers",
  "data": {
    "numbers": ["0244123456", "0201234567"],
    "default": "random"
  }
}