This API allows you to send bulk SMS securely and quickly.
AppKey authentication required.
Base URL : https://unikron.website/api/v2/sms/send
Add your AppKey in the Authorization
header of the request.
Example : Authorization: Bearer VOTRE_APP_KEY
Method : POST
ou GET
URL : https://unikron.website/api/v2/sms/send
POST https://unikron.website/api/v2/sms/send Content-Type: application/json Authorization: Bearer VOTRE_APP_KEY { "number": "+2250700000001,+2250700000002", "text": "Votre code est 1234", "sender": "UNIKRON" }
{ "status": "processed", "message": "Request processed", "results": [ { "number": "+2250700000001", "status": "SUBMITTED", "error": null, "sms_id": "abc123" }, { "number": "+2250700000002", "status": "SUBMITTED", "error": null, "sms_id": "abc124" } ] }