Retrieve estimate
Returns one authorized estimate with live scope/effort and its active immutable baseline pointer.
GET
/api/v1/estimates/:idAuthorization
estimates:readapi key scoperequiredRequired scope when calling with an API key.
Path parameters
idstringrequiredEstimate UUID.
Example: 8a043c6e-52ab-4df1-8b7a-afec991a05a2
Request
curl -X GET "https://www.digitalstack360.com/api/v1/estimates/8a043c6e-52ab-4df1-8b7a-afec991a05a2" \
-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",
"status": "baselined",
"version": 4,
"active_snapshot_id": "877558ec-b559-48b4-9210-b53ed720fb73"
}
}Errors
401
missing_authNo credentials provided
401
invalid_api_keyAPI key is invalid or revoked
404
not_foundEstimate is outside the visible project set or does not exist.