Get Team Stats

Get summary counts of your team's cards and their verification states.

The Get Team Stats endpoint returns summary counts for your team's cards and their verification states. Use it when you want a quick read on your team's content health.

GET /v1/teams/{teamId}/stats

URL parameters

ParameterDescription
teamIdThe ID of the team.

Request

curl -u $GURU_USER:$GURU_TOKEN https://api.getguru.com/api/v1/teams/{teamId}/stats

Response

The response contains a stats object with summary metrics:

FieldDescription
team-card-countTotal number of cards visible to the team.
team-trust-scoreThe number of cards in each verification state.
{
  "stats" : {
    "team-card-count" : {
      "count" : 848
    },
    "team-trust-score" : {
      "trustedCount" : 706,
      "needsVerificationCount" : 142
    }
  }
}