List estimates
Lists visible project-scoped estimates with live scope, effort, role demand, risk, timeline, baseline identity, and provenance.
GET
/api/v1/estimatesAuthorization
estimates:readapi key scoperequiredRequired scope when calling with an API key.
Query parameters
project_idstringoptionalLimit to one visible project UUID.
Example: 24ea6df2-7f4c-4c32-9fc1-6c8a0cb5b4b2
statusstringoptionalFilter by lifecycle posture.
limitnumberoptionalMaximum 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_authNo credentials provided
401
invalid_api_keyAPI key is invalid or revoked
403
scope_insufficientKey lacks estimates:read scope