This is the official C# library of HypeProxy.io.
This project contains the official HypeProxy.io library for the use of our API and access to all your account data.
First of all you need to install the latest version of our HypeProxy
library with NuGet, to do this do :
dotnet add package hypeproxy
var client = new HypeProxyClient();
// Check if API is healthy or not;
await client.HealthyAsync();
// Sign-in to the API.
await client.SignInAsync("email@gmail.com", "Passw0rd");
// List all products.
var products = await client.Products.FindAsync();
// Do another something
We also provide a command line tool to perform operations on your account and proxies (like IP rotation etc), to install it you need to first install .NET 6 here: https://dotnet.microsoft.com/en-us/download.
And then execute this command:
dotnet tool install --global HypeProxy.Cli
To verify if hypeproxy-cli
is successfully installed you can execute:
hypeproxy health
To login to your account you can do:
hypeproxy signin email@gmail.com Passw0rd!
All our library and tools are provided in full opensource, you can also contribute by reading this guide.