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

# Meta

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

## Typed access

`Meta` operations are reached via `client.Api.Meta.Country` on `EksoClient`.

```csharp theme={null}
await client.Api.Meta.Country.ListCountryAsync();
```

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/meta/country`  | Returns the list of supported ISO country codes.            |
| `GET`  | `/api/meta/currency` | Returns the list of supported ISO currency codes.           |
| `GET`  | `/api/meta/timezone` | Returns the list of supported timezones with display names. |

## See also

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