
#### Libraries

# C# .NET Library

The official HypeProxy.io client library for .NET applications. Compatible with .NET Standard.

## Installation

Install the package from [NuGet](https://www.nuget.org/packages/ClintSharp/):

```bash
dotnet add package HypeProxyClient
```

## Quick Start

Create an instance of the `HypeProxyClient` class and authenticate with your API token:

```csharp
var client = HypeProxyClient.Connect("YOUR_API_TOKEN");
```

## Health Check

Verify the API is reachable:

```csharp
bool healthy = client.HealthCheck();
Console.WriteLine(healthy ? "API is online" : "API is unreachable");
```

## Getting Your API Token

Your API token is available in your [HypeProxy.io dashboard](https://app.hypeproxy.io) on your profile page.

{% see-also title="Authentication" href="/docs/authentication" /%}
