Statistics

This page describes the endpoints for retrieving usage statistics about your organization and your own user account.

The stats object

{
  // The total number of samples submitted.
  "samples_submitted": 2180
}

GET /stats/org

Returns usage statistics aggregated across the organization the requesting user is a member of.

Example

curl -H 'Authorization: Bearer <YOUR_ACCESS_KEY>' \
    'https://tria.ge/api/v0/stats/org'
// Response:
{
  "samples_submitted": 2180
}

GET /stats/user

Returns usage statistics for the requesting user.

Example

curl -H 'Authorization: Bearer <YOUR_ACCESS_KEY>' \
    'https://tria.ge/api/v0/stats/user'
// Response:
{
  "samples_submitted": 880
}