Skip to content

This application helps to integrate Monobank open API (client) to your application.

Notifications You must be signed in to change notification settings

TheGarmr/monobank-client

Repository files navigation

MonobankClient


This library helps to integrate Monobank open API(client) to your application.

Full API documentation can be found here: Monobank open API

Functionality

API limitations:

  • You can receive information about a client once per a minute
  • Information about currencies refreshes once per 5 minutes

Quickstart:

Adding a client using Dependency Injection

You can use this method in DI if you have only one client or need only a currencies client. Where the monobank-api is the section in your appsettings.json file.

private static IServiceCollection AddMonobankService(this IServiceCollection services, IConfiguration configuration)
{
    services.AddMonobankSingleClientService(options => configuration.GetSection("monobank-api").Bind(options));
    return services;
}

You can use this method in DI if you have multiple clients or need only a currency client. Where the monobank-api is the section in your appsettings.json file.

private static IServiceCollection AddMonobankService(this IServiceCollection services, IConfiguration configuration)
{
    services.AddMonobankMultiClientsService(options => configuration.GetSection("monobank-api").Bind(options));
    return services;
}

After that you will have the ability to inject a corresponding class with the following interfaces:

  • IMonobankSingleClientService
  • IMonobankMultiClientsService

The difference between these clients is that the IMonobankSingleClientService uses the ApiToken property from the configuration section and the IMonobankMultiClientsService needs a token each time you call its methods.

About

This application helps to integrate Monobank open API (client) to your application.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages