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
}

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
tagid
number
mintime
string
maxtime
string
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