GET {BASE_URL}/api/sms/statisticsfrom, to (optional; default last 30 days).200 OK{
"success": true,
"message": "Statistics fetched successfully",
"data": {
"total_sms": 1280,
"total_delivered": 1190,
"total_sent": 65,
"total_failed": 25
}
}total_sent = accepted/in-flight but not yet confirmed delivered.)curl --location 'https://prod.your-api-server.com/api/sms/statistics?from=undefined&to=undefined' \
--header 'x-api-key: {{x-api-key}}'{
"success": true,
"message": "Statistics fetched successfully",
"data": {
"total_sms": 1280,
"total_delivered": 1190,
"total_sent": 65,
"total_failed": 25
}
}