Retrieve the statistics of a project

Retrieve the statistics for a specific project with its UUID.

GET /aos/v1/projects/{projectId}/statistics

Query params

Parameter Type Mandatory
projectId string (uuid) yes

Response

Status: 200 OK
{
  "project": {
    "statistics": {
      "answered": 22,
      "may_answer": 0,
      "declined": 7,
      "contractors": 11,
      "tender_documents": 0,
      "budgets": {
        "total": 1660000,
        "simulated_cost": 1633634.74,
        "total_anticipated_trades": 1660000,
        "total_anticipated_offers": 1633634.74,
        "budget_trades_to_assign": {
          "value": 0,
          "percent": 0
        },
        "project_deviation": {
          "value": 26365.26000000001,
          "percent": 1.59
        }
      }
    }
  }
}