API for querying SMS statistics and message details
- Message Status APIs
- API Overview
- Get latest SMS from phone number
https://sms-apistatus.namirialtsp.com/api/
https://sms-apistatus.preprod.namirialtsp.com/api/
https://sms-apistatus.test.namirialtsp.com/api/
- Production environment
https://sms-apistatus.namirialtsp.com/api/messagestatus/phonenumber/{phonenumber}
- Pre-release staging environment
https://sms-apistatus.preprod.namirialtsp.com/api/messagestatus/phonenumber/{phonenumber}
- Development and testing environment
https://sms-apistatus.test.namirialtsp.com/api/messagestatus/phonenumber/{phonenumber}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://sms-apistatus.namirialtsp.com/api/messagestatus/phonenumber/+1234567890?sendDate=2019-08-24T14%3A15%3A22Z&count=50' \
-H 'X-Api-Key: YOUR_API_KEY_HERE'{ "messages": [ { … } ] }
Request
Retrieves the delivery status of the latest messages associated with the external key specified in the reference.key parameter of the send API.
- Production environment
https://sms-apistatus.namirialtsp.com/api/messagestatus/reference/{referencekey}
- Pre-release staging environment
https://sms-apistatus.preprod.namirialtsp.com/api/messagestatus/reference/{referencekey}
- Development and testing environment
https://sms-apistatus.test.namirialtsp.com/api/messagestatus/reference/{referencekey}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://sms-apistatus.namirialtsp.com/api/messagestatus/reference/ref-12345?sendDate=2019-08-24T14%3A15%3A22Z&count=50' \
-H 'X-Api-Key: YOUR_API_KEY_HERE'{ "messages": [ { … } ] }
- Production environment
https://sms-apistatus.namirialtsp.com/api/messagestatus/{messageid}
- Pre-release staging environment
https://sms-apistatus.preprod.namirialtsp.com/api/messagestatus/{messageid}
- Development and testing environment
https://sms-apistatus.test.namirialtsp.com/api/messagestatus/{messageid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://sms-apistatus.namirialtsp.com/api/messagestatus/54149766-7f65-4d02-b29d-406a42ca7a88 \
-H 'X-Api-Key: YOUR_API_KEY_HERE'{ "message": { "id": "30307af0-6d8b-4fbf-b4f3-b0e1fc32381c", "reference": { … }, "channel": "SMS", "status": "DELIVERED", "providerAcceptanceAt": "2026-02-27T09:06:58Z", "statusChangedAt": "2026-02-27T09:07:08Z", "provider": { … }, "sms": { … } } }