Get sprint planning context

Returns a project’s sprint-planning context and readiness score as a read-only projection. It never moves work, changes sprint membership, or applies a plan.

GET/api/v1/projects/:projectId/sprint-planning

Authorization

sprints:readapi key scoperequired
Required scope when calling with an API key.

Path parameters

projectIdstringrequired
Project ID in the resolved workspace

Example: proj_abc123

Request

curl -X GET "https://www.digitalstack360.com/api/v1/projects/proj_abc123/sprint-planning" \
  -H "Authorization: Bearer $DS_API_KEY"

Examples use a placeholder key from your environment. Store your key in $DS_API_KEY — never commit it.

Response

200 OK
{
  "data": {
    "project_id": "proj_abc123",
    "readiness": {
      "score": 70,
      "verdict": "nearly",
      "computed_at": "2026-07-15T14:22:04Z"
    },
    "context": {
      "sprint": {
        "current": null,
        "next": [],
        "totalCount": 0
      }
    }
  },
  "meta": {
    "generated_at": "2026-07-15T14:22:04Z",
    "authority": "read_only_projection"
  }
}

Errors

401
missing_auth

No credentials provided

401
invalid_api_key

API key is invalid or revoked

403
scope_insufficient

Key lacks sprints:read scope

404
project_not_found

Project does not exist in the resolved workspace