AnyPay is a payment system that allows you to accept payments using the API.
This .NET library will help you work with AnyPay through the AnyPay API.
Use the nuget package.
var anyPayClient = new AnyPayClient(
"YOUR_API_ID",
"YOUR_API_KEY",
"YOUR_SECRET_KEY",
12345 //Your project id
);
var myBalance = await anyPayClient.GetBalanceAsync(cancellationToken);
There are no tests in the project, if you want to help write them, then send a pull request.