Esketit.API is a strongly typed client library for accessing the Esketit API.
- Response data is mapped to strongly typed models
- Support for most of the Esketit functionallity
- Possibility to execute custom API calls (in case of Esketit new functionallities)
- Initialization via username/password
- Open source so you can audit security mechanizms
The library is targeting .NET 8.0 for optimal compatibility
dotnet add package Esketit.API
Install-Package Esketit.API
The NuGet package files are added along side the source with the latest GitHub release which can found here.
// Get my balance
var client = new EsketitClient();
await client.InitializeUsingEmailAsync(new()
{
email = "EsketitEmail",
password = "EsketitPassword"
});
var balance = await client.GetAccountSummaryAsync(new() { currencyCode = "EUR" });Any support is greatly appreciated.