{"id":51306411,"url":"https://github.com/lastunicorn/revolut-toolkit","last_synced_at":"2026-07-01T00:02:25.671Z","repository":{"id":362304427,"uuid":"1258335416","full_name":"lastunicorn/revolut-toolkit","owner":"lastunicorn","description":"A set of helpers to interact with files generated by Revolut bank.","archived":false,"fork":false,"pushed_at":"2026-06-25T10:35:11.000Z","size":41,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-06-25T12:14:42.341Z","etag":null,"topics":["banking","csharp","revolut","transactions"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lastunicorn.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.txt","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":"lastunicorn","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2026-06-03T13:36:58.000Z","updated_at":"2026-06-25T10:35:15.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/lastunicorn/revolut-toolkit","commit_stats":null,"previous_names":["lastunicorn/revolut-toolkit"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/lastunicorn/revolut-toolkit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lastunicorn%2Frevolut-toolkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lastunicorn%2Frevolut-toolkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lastunicorn%2Frevolut-toolkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lastunicorn%2Frevolut-toolkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lastunicorn","download_url":"https://codeload.github.com/lastunicorn/revolut-toolkit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lastunicorn%2Frevolut-toolkit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34987611,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-30T02:00:05.919Z","response_time":92,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["banking","csharp","revolut","transactions"],"created_at":"2026-07-01T00:02:20.487Z","updated_at":"2026-07-01T00:02:25.664Z","avatar_url":"https://github.com/lastunicorn.png","language":"C#","funding_links":["https://ko-fi.com/lastunicorn"],"categories":[],"sub_categories":[],"readme":"\n# Revolut Bank Toolkit\n\n[![GitHub Repo](https://img.shields.io/badge/github-repo-blue?logo=github)](https://github.com/lastunicorn/revolut-toolkit) [![GitHub Build](https://img.shields.io/github/actions/workflow/status/lastunicorn/revolut-toolkit/build-master.yml?logo=github)](https://github.com/lastunicorn/revolut-toolkit/actions/workflows/build-master.yml) [![NuGet Version](https://img.shields.io/nuget/v/DustInTheWind.Revolut.Toolkit?logo=nuget)](https://www.nuget.org/packages/DustInTheWind.Revolut.Toolkit) [![NuGet Downloads](https://img.shields.io/nuget/dt/DustInTheWind.Revolut.Toolkit?logo=nuget)](https://www.nuget.org/packages/DustInTheWind.Revolut.Toolkit)\n\nA set of helpers to interact with files generated by Revolut bank.\n\n**Revolut Group Holdings Ltd**, known as **Revolut**, is a British global financial technology company headquartered in London and founded in July 2015 by Nik Storonskiy and  Vlad Yatsenko:\n\n- https://en.wikipedia.org/wiki/Revolut\n\n## Installation\n\nPackage Manager:\n\n```\nInstall-Package DustInTheWind.Revolut.Toolkit\n```\n\n.NET CLI:\n\n```\ndotnet add package DustInTheWind.Revolut.Toolkit\n```\n\n## Runtime Requirements\n\n- Library target framework: `.NET 8.0` (`net8.0`)\n\n## Quick Start\n\n### Step 1 - Export Statement CSV File\n\n- Go to the Revolut web application (https://app.revolut.com/home).\n\n- Select an account and click the \"Statement\" button in the top right.\n- Choose to export as \"Excel\". This option is misnamed, it is not really an Excel file. It is an CSV file.\n- Choose the start and end month.\n- Click \"Generate\".\n\nThe downloaded file should have the following header line:\n\n`Type,Product,Started Date,Completed Date,Description,Amount,Fee,Currency,State,Balance`\n\n### Step 2 - Parse the Exported Document\n\nThe `StatementDocument` class provides several methods to parse and load a CSV file, to accommodate different input sources. Here it is one of them:\n\n**From a file path:**\n\n```csharp\nStatementDocument document = await StatementDocument.LoadFromFileAsync(\"statement.csv\");\n\nforeach (BankTransaction transaction in document)\n{\n    ...\n}\n```\n\n## `BankTransaction` Properties\n\n| CSV Column       | Property        | Type                 | Description                                |\n| ---------------- | --------------- | -------------------- | ------------------------------------------ |\n| `Type`           | `Type`          | `TransactionType`    | The type/category of the transaction.      |\n| `Product`        | `Product`       | `TransactionProduct` |                                            |\n| `Started Date`   | `StartedDate`   | `DateTime`           |                                            |\n| `Completed Date` | `CompletedDate` | `DateTime`           |                                            |\n| `Description`    | `Description`   | `string`             |                                            |\n| `Amount`         | `Amount`        | `decimal`            |                                            |\n| `Fee`            | `Fee`           | `decimal`            |                                            |\n| `Currency`       | `Currency`      | `Currency`           |                                            |\n| `State`          | `State`         | `TransactionState`   |                                            |\n| `Balance`        | `Balance`       | `decimal`            | The account balance after the transaction. |\n\n## Demo Project\n\nThe repository includes a sample CLI project in `sources/Revolut.Toolkit.Demo` that demonstrates:\n\n- reading `statement.csv`\n- printing parsed data.\n\nYou can use this project as a reference implementation for your own importer/exporter tools.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flastunicorn%2Frevolut-toolkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flastunicorn%2Frevolut-toolkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flastunicorn%2Frevolut-toolkit/lists"}