---
title: "Get sprint activity stats for the current user"
method: GET
path: "/api/v1/sprint-activity/user-stats"
tags: ["dashboard", "bff"]
---

# Get sprint activity stats for the current user

`GET /api/v1/sprint-activity/user-stats`

## Query parameters

- `page` number
- `limit` number
- `order` object
  - `averageScore` 'ASC' | 'DESC'
  - `completedMissions` 'ASC' | 'DESC'
  - `participatedMissions` 'ASC' | 'DESC'
  - `totalScore` 'ASC' | 'DESC'
- `sprintId` string, uuid, required

## Response `201`

- SprintActivityFindUserStatsResponseDTO
  - `data` object[], required
    - `averageScore` number, nullable, required — Average score (0-100) across the scored role-play rounds played by the user during the sprint. Null when none of their rounds have been scored (never 0).
    - `completedMissions` number, required — Number of unique missions the user has completed during the sprint
    - `participatedMissions` number, required — Number of unique missions the user has participated in during the sprint
    - `totalMissionCount` number, required — Total number of missions available in the sprint track
    - `totalScore` number, required — Total score achieved by the user during the sprint
    - `userId` string, required — ID of the user
    - `userName` string, required — First name and last name of the user
  - `meta` object, required
    - `hasNext` boolean, required
    - `limit` number, required
    - `page` number, required
    - `total` number, required

## Changes

- **2026-08-28** `b4e171f8d0f4` — 1 breaking
  - the response property `data/items/averageScore` became nullable for the status `201`

[Change history](https://skmtc.dev/wejam/apis/jam/changes/api/v1/sprint-activity/user-stats/get.md)

---

[API](https://skmtc.dev/wejam/apis/jam.md) · [All operations](https://skmtc.dev/wejam/apis/jam/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/wejam/jam/revisions/b4e171f8d0f4/schema)
