Skip to main content
GET
/
usage
/
data
List recent data sessions
curl --request GET \
  --url https://dashboard.hologram.io/api/1/usage/data \
  --header 'Authorization: Basic <encoded-value>'
{
  "success": true,
  "limit": 2,
  "size": "2s",
  "continues": true,
  "links": {
    "path": "/api/1/usage/data",
    "base": "dashboard.hologram.io",
    "next": "/api/1/usage/data?limit=2&startafter=5234567890"
  },
  "lastid": 5234567890,
  "data": [
    {
      "linkid": 2235723,
      "record_id": 5234567891,
      "session_begin": "2025-09-19 14:30:22",
      "timestamp": "2025-09-19 16:45:18",
      "bytes": 245679,
      "imeisv": "8681590599795700",
      "cellid": 42851392,
      "lac": 25847,
      "radio_access_technology": "LTE",
      "network_name": "T-Mobile USA, Inc",
      "imei": "868159059979570"
    },
    {
      "linkid": 2235723,
      "record_id": 5234567890,
      "session_begin": "2025-09-19 12:15:33",
      "timestamp": "2025-09-19 14:22:17",
      "bytes": 189432,
      "imeisv": "8681590599795700",
      "cellid": 42851392,
      "lac": 25847,
      "radio_access_technology": "3G",
      "network_name": "Telefonica Moviles Espana S.A.",
      "imei": "867962043322067"
    }
  ]
}

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

orgids
string

Comma-separated list of organization IDs.

Example:

"85366,85367"

startafter
integer
Example:

102544

deviceid
integer
Example:

1363295

deviceids
string

Comma-separated list of device IDs.

Example:

"4020513,4020514"

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"

timestart
integer

Start of time range in Unix epoch seconds format.

Example:

1767225600

timeend
number

End of time range in Unix epoch seconds format.

Example:

1769821199

tagname
string

Name of a single tag.

Example:

"Chicago Loop"

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

getdeviceinfo
boolean

When true, includes device name and tags in each usage record.

Response

200 - application/json

OK

continues
boolean

Displays if there is another page of results.

Example:

true

data
object[]
limit
integer

The max number of items to return in a single response

Example:

10

Pagination navigation links for fetching additional pages of results

size
integer

The number of values returned

Example:

216

success
boolean

Whether the request was successful or not

Example:

true