{"id":51306479,"url":"https://github.com/lastunicorn/mintos-toolkit","last_synced_at":"2026-07-01T00:02:39.477Z","repository":{"id":363823410,"uuid":"1258531310","full_name":"lastunicorn/mintos-toolkit","owner":"lastunicorn","description":"A set of helpers to handle files generated by Mintos.","archived":false,"fork":false,"pushed_at":"2026-06-26T17:22:46.000Z","size":63,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-06-26T18:09:59.273Z","etag":null,"topics":["csharp","finance","mintos","money","p2p-lending","peer-to-peer-lending","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-03T17:05:49.000Z","updated_at":"2026-06-26T17:22:54.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/lastunicorn/mintos-toolkit","commit_stats":null,"previous_names":["lastunicorn/mintos-toolkit"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/lastunicorn/mintos-toolkit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lastunicorn%2Fmintos-toolkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lastunicorn%2Fmintos-toolkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lastunicorn%2Fmintos-toolkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lastunicorn%2Fmintos-toolkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lastunicorn","download_url":"https://codeload.github.com/lastunicorn/mintos-toolkit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lastunicorn%2Fmintos-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":["csharp","finance","mintos","money","p2p-lending","peer-to-peer-lending","transactions"],"created_at":"2026-07-01T00:02:38.886Z","updated_at":"2026-07-01T00:02:39.462Z","avatar_url":"https://github.com/lastunicorn.png","language":"C#","funding_links":["https://ko-fi.com/lastunicorn"],"categories":[],"sub_categories":[],"readme":"# Mintos Toolkit\n\n[![GitHub Repo](https://img.shields.io/badge/github-repo-blue?logo=github)](https://github.com/lastunicorn/mintos-toolkit) [![GitHub Build](https://img.shields.io/github/actions/workflow/status/lastunicorn/mintos-toolkit/build-master.yml?logo=github)](https://github.com/lastunicorn/mintos-toolkit/actions/workflows/build-master.yml) [![NuGet Version](https://img.shields.io/nuget/v/DustInTheWind.Mintos.Toolkit?logo=nuget)](https://www.nuget.org/packages/DustInTheWind.Mintos.Toolkit) [![NuGet Downloads](https://img.shields.io/nuget/dt/DustInTheWind.Mintos.Toolkit?logo=nuget)](https://www.nuget.org/packages/DustInTheWind.Mintos.Toolkit)\n\n`Mintos Toolkit` is a .NET library that helps working with files exported from Mintos.\n\nMintos is a loan investment platform.\n\n- https://www.mintos.com\n\n## Installation\n\nPackage Manager:\n\n```powershell\nInstall-Package DustInTheWind.Mintos.Toolkit\n```\n\n.NET CLI:\n\n```bash\ndotnet add package DustInTheWind.Mintos.Toolkit\n```\n\n## Runtime Requirements\n\n- Library target framework: `.NET 8.0` (`net8.0`)\n\n## Features\n\n- **Parse Mintos Statement Documents** - Load and parse CSV files exported directly from the Mintos platform\n\n## Quick Start\n\n### a) Export the Transactions CSV File\n\nIn Mintos web application:\n\n1. Log in.\n2. Click on profile image (top-right) and open **Transactions**.\n3. Select the date interval you need.\n4. Click \"Search\" button to apply the filters\n5. Click the **Download Selected List (*.csv)** link to download the file.\n\nYou will get a CSV containing transaction rows that can be parsed with this toolkit.\n\n### b) Parse the Exported Document\n\n```csharp\nusing DustInTheWind.Mintos.Toolkit;\n\nStatementDocument statementDocument = await StatementDocument.LoadFromFileAsync(\"statement.csv\");\n\nforeach (TransactionRecord transaction in statementDocument)\n{\n\t...\n}\n```\n\n## CSV Statement Document\n\nEach row is mapped to a `TransactionRecord` with the following columns:\n\n| CSV Column      | Type     | TransactionRecord Property | Description                                         |\n|-----------------|----------|--------------------------|-----------------------------------------------------|\n| `Date`          | `DateTime` | `Date`                   | The date when the transaction occurred.             |\n| `Transaction ID:`| `string` | `TransactionId`         | A unique identifier for the transaction.            |\n| `Details`       | `string` | `Details`                | Additional details or description of the transaction.|\n| `Turnover`      | `decimal` | `Turnover`               | The transaction amount.                             |\n| `Balance`       | `decimal` | `Balance`                | The account balance after the transaction.         |\n| `Currency`      | `string` | `Currency`               | The currency code (e.g., EUR, USD).                |\n| `Payment Type`  | `string` | `PaymentType`            | The type of payment (e.g., Deposit, Withdrawal, Interest).|\n\n## Demo Project\n\nThe repository includes a sample CLI project in `sources/Mintos.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\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flastunicorn%2Fmintos-toolkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flastunicorn%2Fmintos-toolkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flastunicorn%2Fmintos-toolkit/lists"}