{"id":19426536,"url":"https://github.com/thegarmr/monobank-client","last_synced_at":"2026-02-06T08:08:17.875Z","repository":{"id":63948346,"uuid":"502693643","full_name":"TheGarmr/monobank-client","owner":"TheGarmr","description":"This application helps to integrate Monobank open API (client) to your application.","archived":false,"fork":false,"pushed_at":"2024-12-17T21:31:42.000Z","size":85,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-28T05:12:08.958Z","etag":null,"topics":["monobank","monobank-api","monobank-client","wrapper"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TheGarmr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-06-12T18:14:55.000Z","updated_at":"2024-12-17T21:22:54.000Z","dependencies_parsed_at":"2024-11-28T11:24:26.611Z","dependency_job_id":"b2df1c35-aae1-46bc-a2d9-f20875bac63e","html_url":"https://github.com/TheGarmr/monobank-client","commit_stats":{"total_commits":19,"total_committers":1,"mean_commits":19.0,"dds":0.0,"last_synced_commit":"bbb450f7430592a863a13a77e38bb45c0fab5e6b"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheGarmr%2Fmonobank-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheGarmr%2Fmonobank-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheGarmr%2Fmonobank-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheGarmr%2Fmonobank-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TheGarmr","download_url":"https://codeload.github.com/TheGarmr/monobank-client/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248917039,"owners_count":21182916,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["monobank","monobank-api","monobank-client","wrapper"],"created_at":"2024-11-10T14:07:54.174Z","updated_at":"2026-02-06T08:08:17.846Z","avatar_url":"https://github.com/TheGarmr.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MonobankClient [\u003cimg src=\"https://img.shields.io/nuget/dt/MonobankClient?style=for-the-badge\"\u003e](https://www.nuget.org/packages/MonobankClient/)\u003cbr\u003e\n[\u003cimg src=\"https://img.shields.io/github/v/release/TheGarmr/monobank-client?label=Latest%20GitHub%20release\u0026style=for-the-badge\"\u003e](https://github.com/TheGarmr/monobank-client/releases/latest)\n[\u003cimg src=\"https://img.shields.io/nuget/v/MonobankClient?label=Latest%20Nuget%20version\u0026style=for-the-badge\"\u003e](https://www.nuget.org/packages/MonobankClient/)\u003cbr\u003e\n\n### This library helps to integrate [Monobank open API](https://api.monobank.ua)(client) to your application.\n### Full API documentation can be found here: [Monobank open API](https://api.monobank.ua/docs/)\n\n### Functionality\n  * [Obtaining exchange rates](https://api.monobank.ua/docs/#tag/Publichni-dani/paths/~1bank~1currency/get)\n  * [Information about the client](https://api.monobank.ua/docs/#tag/Kliyentski-personalni-dani/paths/~1personal~1client-info/get)\n  * [Set up WebHook](https://api.monobank.ua/docs/#tag/Kliyentski-personalni-dani/paths/~1personal~1webhook/post)\n  * [Extract transactions](https://api.monobank.ua/docs/#tag/Kliyentski-personalni-dani/paths/~1personal~1statement~1{account}~1{from}~1{to}/get)\n\n### API limitations:\n  * You can receive information about a client once per a minute\n  * Information about currencies refreshes once per 5 minutes\n\n### Quickstart:\n  * Go to your [personal profile](https://api.monobank.ua/)\n  * Create a token\n  * Install the package from [Nuget.org](https://www.nuget.org/packages/MonobankClient/)\n  * Add a client using Dependency Injection\n\n### Adding a client using Dependency Injection\nYou can use this method in DI if you have only one client or need only a currencies client.\nWhere the `monobank-api` is the section in your appsettings.json file.\n```\nprivate static IServiceCollection AddMonobankService(this IServiceCollection services, IConfiguration configuration)\n{\n    services.AddMonobankSingleClientService(options =\u003e configuration.GetSection(\"monobank-api\").Bind(options));\n    return services;\n}\n```\n\nYou can use this method in DI if you have multiple clients or need only a currency client.\nWhere the `monobank-api` is the section in your appsettings.json file.\n```\nprivate static IServiceCollection AddMonobankService(this IServiceCollection services, IConfiguration configuration)\n{\n    services.AddMonobankMultiClientsService(options =\u003e configuration.GetSection(\"monobank-api\").Bind(options));\n    return services;\n}\n```\n\nAfter that you will have the ability to inject a corresponding class with the following interfaces:\n  * IMonobankSingleClientService\n  * IMonobankMultiClientsService\n\nThe 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.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthegarmr%2Fmonobank-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthegarmr%2Fmonobank-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthegarmr%2Fmonobank-client/lists"}