> ## Documentation Index
> Fetch the complete documentation index at: https://docs.plane.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get a workforce calculation

> Retrieve an immutable workforce calculation.

### Parameters

<ParamField type="string" path="id" initialValue="wfc_V6nP3qR9tY2m" required>
  The ID of the workforce calculation to retrieve.
</ParamField>

### Returns

Returns the [Workforce calculation object](/reference/workforce-calculations/object).

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "wfc_V6nP3qR9tY2m",
    "object": "workforce.calculation",
    "status": "calculated",
    "plan": null,
    "currency": "CAD",
    "period": {
      "starts": "2026-09-01",
      "ends": "2026-10-31",
      "frequency": "monthly"
    },
    "headcount": "1.0",
    "cost": {
      "total": "26400.00",
      "cash": "26400.00",
      "accrual": "0.00"
    },
    "periods": [
      {
        "period": "2026-09",
        "headcount": "1.0",
        "cost": "13200.00",
        "line_items": []
      }
    ],
    "created": "2026-05-27T12:00:00Z"
  }
  ```
</ResponseExample>
