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
| Parameter | Description |
|---|---|
teamId | The ID of the team. |
Request
curl -u $GURU_USER:$GURU_TOKEN https://api.getguru.com/api/v1/teams/{teamId}/statsResponse
The response contains a stats object with summary metrics:
| Field | Description |
|---|---|
team-card-count | Total number of cards visible to the team. |
team-trust-score | The number of cards in each verification state. |
{
"stats" : {
"team-card-count" : {
"count" : 848
},
"team-trust-score" : {
"trustedCount" : 706,
"needsVerificationCount" : 142
}
}
}Updated 20 days ago

