This is a synchronous Monobank API wrapper written entirely in Rust. It has been implemented solely for learning purposes. For more details on the Monobank API, refer to their official documentation.
There are 3 available requests:
request_currencies()
request_user_info()
request_payments(account, from, to)
Once you receive the data from these requests, you can integrate it into your workflow, see src/bin/example.rs
for reference.
To get started, follow these steps:
-
Create a Token: Obtain your API token from Monobank's API portal.
-
Set Environment Variable: Export your API token in your local environment:
export API_KEY=<your token here>