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

# Reporting

> Typed SDK access to the Reporting resource — methods and HTTP routes.

## Typed access

`Reporting` operations are reached via `client.Api.Insight.Report.Item` on `EksoClient`.

```csharp theme={null}
await client.Api.Insight.Report.Item.Report_itemAsync();
```

For the full set of methods and request/response types, your IDE's auto-completion
is the fastest discovery path. Each method below maps 1-to-1 to an HTTP route in
the [API Reference](/api-reference/introduction).

## Operations

| Method | Route                                         | Summary                                                                                |
| ------ | --------------------------------------------- | -------------------------------------------------------------------------------------- |
| `POST` | `/api/insight/report/item`                    | Returns billable item data for the specified reporting period.                         |
| `POST` | `/api/insight/report/profitability`           | Returns profitability data for the specified reporting period.                         |
| `POST` | `/api/insight/report/profitability/drilldown` | Returns detailed profitability drilldown data for a specific item or grouping.         |
| `POST` | `/api/insight/report/risk/board-cycle`        | Returns board cycle time risk analysis for the specified reporting period.             |
| `POST` | `/api/insight/report/risk/estimate-logged`    | Returns work estimate versus time logged risk data for the specified reporting period. |
| `POST` | `/api/insight/report/time-code`               | Returns time code distribution data for the specified reporting period.                |
| `POST` | `/api/insight/report/time-week-summary`       | Returns a weekly summary of logged time for the specified reporting period.            |
| `POST` | `/api/insight/report/user`                    | Returns a per-user summary of logged time for the specified reporting period.          |
| `POST` | `/api/insight/report/user-timesheet`          | Returns detailed timesheet entries for a specific user and reporting period.           |

## See also

* [SDK overview](/sdk/overview)
* [Authentication](/sdk/authentication)
* [Quickstart](/sdk/quickstart)
* [Error handling](/sdk/error-handling)
