Skip to main content
GET
/
api
/
v1
/
usage
Get Usage
curl --request GET \
  --url https://data-api.sovfixer.com/api/v1/usage \
  --header 'Authorization: <api-key>'
{
  "granularity": "1h",
  "start": "2025-05-08T10:00:00Z",
  "end": "2025-05-15T10:00:00Z",
  "buckets": [
    {
      "bucket": "2025-05-08T10:00:00Z",
      "counts": {
        "TD": 12,
        "total": 12
      }
    }
  ],
  "totals": {
    "TD": 100,
    "total": 100
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.pingintel.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Query Parameters

end
string

End of the time range. Accepts a relative offset or ISO 8601 UTC timestamp. Defaults to now.

org_short_name
string

Filter by organization short name (e.g. 'AMWNS'). Staff only. Mutually exclusive with username.

start
string

Start of the time range. Accepts a relative offset (-5m, -1h, -30d) or an ISO 8601 UTC timestamp. Defaults to -30d.

username
string

Filter by this username. Defaults to the requesting user. Staff only when querying another user.

Response

granularity
enum<string>
required

Bucket granularity selected based on the time range.

Available options:
5m,
1h,
1d
start
string<date-time>
required

Resolved start of the range (UTC).

end
string<date-time>
required

Resolved end of the range (UTC).

buckets
object[]
required

Time-series rows ordered by bucket start time.

totals
object
required

Summed count per source key over the entire range. Key 'total' is the cross-source aggregate.