Send SMS messages worldwide with enterprise-grade reliability and delivery tracking.
- SMS Gateway
- API Overview
- Check service health (admin)
https://sms.namirialtsp.com/
https://sms.preprod.namirialtsp.com/
https://sms.test.namirialtsp.com/
- Production environment
https://sms.namirialtsp.com/api/Admin/checkServiceStatus
- Pre-production staging environment (coming soon)
https://sms.preprod.namirialtsp.com/api/Admin/checkServiceStatus
- Development and testing environment
https://sms.test.namirialtsp.com/api/Admin/checkServiceStatus
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
-u <username>:<password> \
https://sms.namirialtsp.com/api/Admin/checkServiceStatus{ "globalStatus": true, "dbStatus": true, "servicesStatus": true, "errorMessage": "", "versionNumber": "27.1.0.2" }
Send parameters
Destination phone number in E.164 international format.
Format: +[country code][number] (e.g., +393401234567)
Message text to send.
Character limits:
- GSM-7: 160 chars (single), 153 chars (multi-part)
- UCS-2: 70 chars (single), 67 chars (multi-part)
Encoding: Automatically detected
Special characters: Emojis trigger UCS-2 (higher cost)
Tracking reference to correlate SMS with your business logic. If any field is specified, service is required.
Return detailed response including provider name.
true: Response includesproviderfalse: Response withoutprovider
Business Relation Identifier for One Platform integration.
Overrides default business relation settings.
- Production environment
https://sms.namirialtsp.com/api/Admin/send
- Pre-production staging environment (coming soon)
https://sms.preprod.namirialtsp.com/api/Admin/send
- Development and testing environment
https://sms.test.namirialtsp.com/api/Admin/send
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
-u <username>:<password> \
https://sms.namirialtsp.com/api/Admin/send \
-H 'Content-Type: application/json' \
-d '{
"destination": "+390000000000",
"text": "Your verification code is: 123456",
"account": "account-username",
"lra": 123456,
"reference": {
"service": "DIGITALSIGN",
"action": "AUTH",
"key": "dfg6hwrt356hd"
},
"businessRelationId": "123456789",
"webhook": {
"url": "https://example.com/webhook"
},
"detailed": true
}'{ "id": "7b8ef313-f1f2-4c4f-bffa-438c287ba9d8", "message": "0: Accepted for delivery" }
- Production environment
https://sms.namirialtsp.com/api/Admin/status
- Pre-production staging environment (coming soon)
https://sms.preprod.namirialtsp.com/api/Admin/status
- Development and testing environment
https://sms.test.namirialtsp.com/api/Admin/status
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
-u <username>:<password> \
https://sms.namirialtsp.com/api/Admin/status{ "globalStatus": true, "dbStatus": true, "servicesStatus": true, "errorMessage": "", "versionNumber": "27.1.0.2" }