FaucetPay (.Net and .NetCore)

FAUCETPAY API UNOFFICIAL.
API for you to make a cryptocurrency management platform on FaucetPay.
Through the API you can make payments.
- Features
- Make payments.
- See faucet lists.
- See your balance.
- Check if a wallet or user exists.
- Check payment HASH.
- Manage your cryptocurrencies
- Easy to Use
#ENJOY!
SOME EXAMPLES OF HOW TO USE.
Visual Basic
Using Client = FaucetPayClient.Create(New ApiConfig With {.ApiKey = "889bcd6696e47c9472e18bf986e8bb33448bfa9d"})
Dim BalanceAsync = Await Client.GetBalanceAsync(FaucetPayClient.Bitcoin)
Console.WriteLine("Balance Satoshis: " & BalanceAsync.SatoshiBalance)
Console.WriteLine("Actual Balance: " & BalanceAsync.ActualBalance)
Console.WriteLine("Currency: " & BalanceAsync.Currency)
End Using
C# CSharp
using (var Client = FaucetPayClient.FaucetPayClient.Create(new ApiConfig() { ApiKey = "889bcd6696e47c9472e18bf986e8bb33448bfa9d" }))
{
var BalanceAsync = await Client.GetBalanceAsync(FaucetPayClient.FaucetPayClient.Bitcoin);
Console.WriteLine("Balance Satoshis: " + BalanceAsync.SatoshiBalance);
Console.WriteLine("Actual Balance: " + BalanceAsync.ActualBalance);
Console.WriteLine("Currency: " + BalanceAsync.Currency);
}
Links