curl --request GET \
--url https://dashboard.hologram.io/api/1/usage/sms \
--header 'Authorization: Basic <encoded-value>'{
"success": true,
"limit": 5,
"size": 2,
"continues": false,
"data": [
{
"id": 123456,
"deviceid": 4020513,
"orgid": 98268,
"linkid": 5422976,
"timestamp": "2025-09-18 14:30:00",
"body": "Test SMS",
"destination": "+15551234567",
"status": "delivered",
"cost": "0.05"
}
]
}List device-originated outbound SMS usage.
Returns individual device-originated SMS for the last three months. Use the linkid parameter to retrieve SMS for a specific device. Outbound SMS messages are charged at the rate specified by the SIM’s data plan.
curl --request GET \
--url https://dashboard.hologram.io/api/1/usage/sms \
--header 'Authorization: Basic <encoded-value>'{
"success": true,
"limit": 5,
"size": 2,
"continues": false,
"data": [
{
"id": 123456,
"deviceid": 4020513,
"orgid": 98268,
"linkid": 5422976,
"timestamp": "2025-09-18 14:30:00",
"body": "Test SMS",
"destination": "+15551234567",
"status": "delivered",
"cost": "0.05"
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.hologram.io/llms.txt
Use this file to discover all available pages before exploring further.
HTTP Basic authentication using API keys. Set the username to apikey and the password to your API key.
You can find your API key on the Hologram Dashboard under Account Settings.
144
Comma-separated list of organization IDs.
"85366,85367"
102544
Single profile (link) ID.
4567890
Comma-separated list of link (profile) IDs.
"5389720,5608542"
Single tag ID.
101
Comma-separated list of tag IDs.
"101,102,103"
Start of time range in Unix epoch seconds format.
1767225600
End of time range in Unix epoch seconds format.
1769821199
Name of a single tag.
"Chicago Loop"
Return only activated, active SIMs (e.g. LIVE network states).
Maximum number of items to return in a single request. For endpoints that support pagination, use this with corresponding /pages endpoints to manage large result sets.
50
When true, aggregates SMS records rather than paginating by individual record_id.
Was this page helpful?