List estimates

Lists visible project-scoped estimates with live scope, effort, role demand, risk, timeline, baseline identity, and provenance.

GET/api/v1/estimates

Authorization

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

Query parameters

project_idstringoptional
Limit to one visible project UUID.

Example: 24ea6df2-7f4c-4c32-9fc1-6c8a0cb5b4b2

statusstringoptional
Filter by lifecycle posture.
limitnumberoptional
Maximum results, 1–100.

Example: 25

Request

curl -X GET "https://www.digitalstack360.com/api/v1/estimates?project_id=24ea6df2-7f4c-4c32-9fc1-6c8a0cb5b4b2" \
  -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": [
    {
      "id": "8a043c6e-52ab-4df1-8b7a-afec991a05a2",
      "project_id": "24ea6df2-7f4c-4c32-9fc1-6c8a0cb5b4b2",
      "name": "Implementation estimate",
      "status": "draft",
      "version": 3,
      "scope_items": [],
      "workstreams": [],
      "roles": [],
      "risks": []
    }
  ],
  "meta": {
    "count": 1,
    "truncated": false
  }
}

Errors

401
missing_auth

No credentials provided

401
invalid_api_key

API key is invalid or revoked

403
scope_insufficient

Key lacks estimates:read scope