Skip to content

hypeproxy/hypeproxy-dotnet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

⚠️ WIP: This library cannot currently be used.

HypeProxy.io

HypeProxy.io C# SDK

This is the official C# library of HypeProxy.io.

Nuget

Introduction

This project contains the official HypeProxy.io library for the use of our API and access to all your account data.

Getting Started

First of all you need to install the latest version of our HypeProxy library with NuGet, to do this do :

dotnet add package hypeproxy

Sign-in Example and consuming the API:

var client = new HypeProxyClient();

// Check if API is healthy or not;
await client.HealthyAsync();

// Sign-in to the API.
await client.SignInAsync("[email protected]", "Passw0rd");

// List all products.
var products = await client.Products.FindAsync();

// Do another something

Using HypeProxy CLI

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 protected] Passw0rd!

Credits & Contribution

All our library and tools are provided in full opensource, you can also contribute by reading this guide.