Skip to main content
GET
/
teams
/
{team_id}
/
reputation
/
history
Get team reputation history
curl --request GET \
  --url https://api.mnemom.ai/v1/teams/{team_id}/reputation/history \
  --header 'Authorization: Bearer <token>'
{
  "snapshots": [
    {
      "team_id": "<string>",
      "week_start": "2023-12-25",
      "score": 123,
      "grade": "<string>",
      "components": {},
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Supabase JWT token in Authorization: Bearer header

Path Parameters

team_id
string
required

Team identifier (UUID)

Response

Reputation history snapshots

snapshots
object[]