Get Team Stats

The Get Team Stats endpoint provides raw summary information on total cards counts and counts of cards in various verification states.

API Endpoint

GET /v1/teams/{teamId}/stats

URL Parameters

  • teamId the ID of the Team

Sample Response

The response will contain an array of event objects. Fields include...

  • team-card-count total number of cards visible to the team

  • team-trust-score total number of cards in each verification state

{
  "stats" : {
    "team-card-count" : {
      "count" : 848
    },
    "team-trust-score" : {
      "trustedCount" : 706,
      "needsVerificationCount" : 142
    }
  }
}