Libraries
C# .NET Library
The official HypeProxy.io client library for .NET applications. Compatible with .NET Standard.
Installation
Install the package from NuGet:
dotnet add package HypeProxyClient
Quick Start
Create an instance of the HypeProxyClient class and authenticate with your API token:
var client = HypeProxyClient.Connect("YOUR_API_TOKEN");
Health Check
Verify the API is reachable:
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 on your profile page.
{% see-also title="Authentication" href="/docs/authentication" /%}