Skip to main content
GET
/
usage
/
data
/
monthly
List Usage Data by Month
curl --request GET \
  --url https://dashboard.hologram.io/api/1/usage/data/monthly \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": [
    {
      "bytes": 21474836,
      "linkid": 8676,
      "month": 1,
      "record_id": "8676201801",
      "session_count": "43",
      "year": 2018
    },
    {
      "bytes": 28,
      "linkid": 8638,
      "month": 1,
      "record_id": "8638201801",
      "session_count": "1",
      "year": 2018
    }
  ],
  "success": true
}

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.

Authorizations

Authorization
string
header
required

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.

Query Parameters

orgid
integer
Example:

144

linkid
number

Single profile (link) ID.

Example:

4567890

linkids
string

Comma-separated list of link (profile) IDs.

Example:

"5389720,5608542"

tagid
number

Single tag ID.

Example:

101

tagids
string

Comma-separated list of tag IDs.

Example:

"101,102,103"

mintime
string
maxtime
string
islive
boolean

Return only activated, active SIMs (e.g. LIVE network states).

limit
integer

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.

Example:

50

aggregateall
boolean

When true, aggregates usage across all devices in the organization.

Response

200 - application/json

OK