Skip to main content
GET
/
usage
Usage data
curl --request GET \
  --url https://unblocker.joinmassive.com/usage \
  --header 'Authorization: Bearer <token>'
[
  {
    "email": "user@example.com",
    "from": "2025-12-25T00:00:00+00:00",
    "to": "2025-12-25T15:00:00+00:00",
    "service": "browser",
    "result": "success",
    "calls": 17208,
    "meanSecs": 6.78
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

from
string
required

The ISO datetime to select data starting from, inclusively.

Example:

"2025-12-24T18:00:00-06:00"

to
string
required

The ISO datetime to select data up to, inclusively.

Example:

"2025-12-25T9:00:00-06:00"

email
string

[Whitelabelers only] The (case-insensitive) email address of the user to select data for; multiple email addresses can be provided by repeating the key; data for all email addresses is included by default.

Example:

"user@example.com"

service
enum<string>

The service to select data for; multiple services can be provided by repeating the key; data for all services is included by default.

Available options:
search,
browser
Example:

"browser"

by
enum<string>
default:total

The time unit to group the data by.

Available options:
hour,
day (planned),
total
Example:

"total"

Response

The hourly report.

email
string
required

The email address of the user whose data is selected.

Example:

"user@example.com"

from
string
required

The ISO datetime of the first datapoint.

Example:

"2025-12-25T00:00:00+00:00"

to
string
required

The ISO datetime of the last datapoint.

Example:

"2025-12-25T15:00:00+00:00"

service
enum<string>
required

The service included in the data.

Available options:
search,
browser
Example:

"browser"

result
enum<string>
required

The type of result included in the data.

Available options:
success,
failure
Example:

"success"

calls
integer
required

The number of API calls of the service and result type.

Required range: x >= 1
Example:

17208

meanSecs
number
required

The average number of elapsed seconds of the API calls.

Required range: x >= 0
Example:

6.78