Get Fio Bank transaction reports by date in json.
Log in to your Fio admin area: Settings > API > Add new token.
composer require matusstafura/fioapi
- to publish config file
php artisan vendor:publish --tag="fio-report"
- add token in .env
FIO_TOKEN = "your_api_token"
<?php
use Matusstafura\FioApi\Facades\FioReport;
FioReport::yesterday();
// will return transaction from previous day
FioReport::today();
// will return today's transactions
FioReport::betweenDates("2022-02-14", "2022-02-18");
// will return transactions between dates in format YYYY-MM-DD
This project is open-sourced software licensed under the MIT license.