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

# Board

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

## Typed access

`Board` operations are reached via `client.Api.Board` on `EksoClient`.

```csharp theme={null}
await client.Api.Board.ListAsync();
```

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                                                                                                                                                      |
| -------- | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `GET`    | `/api/board`           | Lists all boards visible to the current user.                                                                                                                |
| `GET`    | `/api/board/portfolio` | Returns a portfolio-level summary across all boards: aggregate metrics and per-board health, financials, item counts, cycle counts, and status distribution. |
| `GET`    | `/api/board/stats`     | Returns item count statistics grouped by board.                                                                                                              |
| `GET`    | `/api/board/{id}`      | Retrieves a single board by ID.                                                                                                                              |
| `POST`   | `/api/board`           | Creates a new board.                                                                                                                                         |
| `PUT`    | `/api/board/{id}`      | Updates an existing board.                                                                                                                                   |
| `DELETE` | `/api/board/{id}`      | Deletes a board by ID.                                                                                                                                       |

## See also

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