API Reference / Strategy - Sprints
Get sprint by ID
get
https://api.intelig.ai/api/v1/intelig/strategy/sprints/{id}
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: getSprint
Returns a single sprint with goals, linked initiatives, and retrospective notes
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/strategy/sprints/1" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | integer (int64) | yes | — |
Response 200
application/json · ApiResponseSprintDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | SprintDto | — |
Status codes
200— Sprint found and returned401— Not authenticated403— Insufficient permissions to access strategy pillar404— Sprint not found429— —
Every response is wrapped in { success, message, data }. A 4xx means the request
is wrong — do not retry it unchanged. A 429 carries Retry-After in seconds.