Get Sprints
Retrieve a paginated list of sprints within a project. This includes the backlog as a special sprint.
Endpoint
GET /projects/{project_uuid}/sprints
Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
| page | integer | The page number for pagination (default: 1) | No |
Response
A successful response will return a 200 OK status code and a JSON object containing the list of sprints (including the backlog) and pagination metadata.
{
"data": [
{
"uuid": "a16f1989-2378-467b-a1b6-8146fca3d17a",
"name": "Backlog",
"description": "The backlog of tasks for this project",
"description_plain": "The backlog of tasks for this project",
"start_date": "2024-10-31",
"end_date": "2024-10-31",
"iterative_sprint_id": "0",
"is_active": false,
"is_completed": false,
"is_backlog": true,
"story_points_committed_on_completion": 0,
"story_points_completed_on_completion": 0,
"created_at": "2024-10-31 00:12:08",
"updated_at": "2025-01-17 01:03:38"
},
...
],
"pagination": {
"current_page": 1,
"per_page": 20,
"total_pages": 1,
"total_items": 5
}
}