curl --request GET \
--url https://dashboard.hologram.io/api/1/usage/data/daily \
--header 'Authorization: Basic <encoded-value>'{
"success": true,
"limit": 100,
"size": 100,
"continues": true,
"links": {
"path": "/api/1/usage/data/daily",
"base": "dashboard.hologram.io",
"next": "/api/1/usage/data/daily?orgid=12345&startafter=9876543"
},
"lastid": 9876543,
"data": [
{
"linkid": 1234560,
"record_id": 98765432,
"date": "2025-09-18",
"bytes": 848258211,
"session_count": 0,
"reporting_windows_with_usage": 3
},
{
"linkid": 1234561,
"record_id": 98765431,
"date": "2025-09-17",
"bytes": 88514282,
"session_count": 4,
"reporting_windows_with_usage": 0
},
{
"linkid": 1234560,
"record_id": 98765430,
"date": "2025-09-16",
"bytes": 29734504,
"session_count": 1,
"reporting_windows_with_usage": 0
},
{
"linkid": 1234562,
"record_id": 98765429,
"date": "2025-09-15",
"bytes": 2101546641,
"session_count": 0,
"reporting_windows_with_usage": 1
},
{
"linkid": 1234563,
"record_id": 98765428,
"date": "2025-09-12",
"bytes": 798315777,
"session_count": 4,
"reporting_windows_with_usage": 0
}
]
}Returns daily data usage by profile (link ID) for each device, summarized by day in UTC. This endpoint provides detailed daily usage breakdowns including session counts and reporting window information.
We do not recommend using this endpoint without specifiying a specific linkid.
curl --request GET \
--url https://dashboard.hologram.io/api/1/usage/data/daily \
--header 'Authorization: Basic <encoded-value>'{
"success": true,
"limit": 100,
"size": 100,
"continues": true,
"links": {
"path": "/api/1/usage/data/daily",
"base": "dashboard.hologram.io",
"next": "/api/1/usage/data/daily?orgid=12345&startafter=9876543"
},
"lastid": 9876543,
"data": [
{
"linkid": 1234560,
"record_id": 98765432,
"date": "2025-09-18",
"bytes": 848258211,
"session_count": 0,
"reporting_windows_with_usage": 3
},
{
"linkid": 1234561,
"record_id": 98765431,
"date": "2025-09-17",
"bytes": 88514282,
"session_count": 4,
"reporting_windows_with_usage": 0
},
{
"linkid": 1234560,
"record_id": 98765430,
"date": "2025-09-16",
"bytes": 29734504,
"session_count": 1,
"reporting_windows_with_usage": 0
},
{
"linkid": 1234562,
"record_id": 98765429,
"date": "2025-09-15",
"bytes": 2101546641,
"session_count": 0,
"reporting_windows_with_usage": 1
},
{
"linkid": 1234563,
"record_id": 98765428,
"date": "2025-09-12",
"bytes": 798315777,
"session_count": 4,
"reporting_windows_with_usage": 0
}
]
}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.
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"
Name of a single tag.
"Chicago Loop"
Start of time range in Unix epoch seconds format.
1767225600
End of time range in Unix epoch seconds format.
1769821199
Return only activated, active SIMs (e.g. LIVE network states).
102544
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 usage across all devices in the organization.
OK
Was this page helpful?