Skip to content
This repository has been archived by the owner on Nov 12, 2023. It is now read-only.

Latest commit

 

History

History
12 lines (10 loc) · 517 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 517 Bytes

monobank-dotnet

This is a simple wrapper for the Monobank API for .NET

How to use?

  • Obtain your personal access token at Monobank API
  • Set HttpClient(why?) and this token in the constructor:
var mono = new Monobank(new HttpClient(), "YOUR_TOKEN");

var currencyInfo = await mono.Currency.GetCurrencyInfoAsync();
var clientInfo = await mono.Personal.GetClientInfoAsync();