SSL certificate is included free of charge in all our web hosting packages.
Full performance, fully equipped servers for every budget.
API Service Usage Guide
This article explains the steps to utilize an API service that enables you to provide API services through your application. With this service, your customers can integrate your API into their software and use your services.
Download Sample File
User Token
API URL
All requests to the API must be sent using the POST method, and the data format should be JSON.
URL: /submit
/submit
user_token
origin
message
numbers
{ "user_token": "", "origin": "+12025550160", "message": "Message content here...", "numbers": [ "+447517663928", "+12126712234" ] }
{ "status": "successful", "report_id": 12345 }
URL: /report
/report
report_id
{ "user_token": "", "report_id": 12345 }
{ "waiting": { "data": [], "count": 0 }, "conducted": { "data": [ "+447517663928", "+12126712234" ], "count": 2 }, "erroneous": { "data": [], "count": 0 }, "status": "successful" }
URL: /balance
/balance
{ "user_token": "" }
{ "status": "successful", "formatted": "49,643.13", "formatted_symbolic": "$49,643.13", "unformatted": "49643.1318", "currency": "USD" }
URL: /prices
/prices
{ "status": "successful", "prices": [ { "countryCode": "AD", "prices": { "USD": 0.1915, "EUR": 0.1772, "GBP": 0.1581, "NGN": 73.97, "PKR": 30.44, "TRY": 1.3166 } } ] }