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"
    }
  ]
}

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
number[]
startafter
integer
Example:

102544

linkid
number
linkids
number[]
tagid
number
tagids
number[]
timestart
integer
Example:

1642744800

timeend
number
tagname
string
islive
boolean
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

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