OFX SDK is a .NET 8.0 implementation of OFX (Open Financial Exchange) file management, such as read, write, parse, import and export to another serializable formats.
The goal of the OFX SDK is to create a level of abstraction to deal with OFX files, offering structured tools to hide some of the complexity needed by the defined standard.
From OFX.net:
Open Financial Exchange is an open standard for client-server systems and cloud based APIs for exchanging financial data, and performing financial transactions between financial institutions, and financial applications. Further, the API allows the exchange to be facilitated either directly or via an intermediary such as data aggregation service providers.
OFX has been the dominant direct API for banks to provide data to financial applications since 1997. It is actively deployed at over 7,000 financial institutions, and the remaining institutions have easy access to certified OFX servers via all major technology providers and systems integrators. More information can be found at: http://ofx.org.
OFX SDK implements the requests and responses defined in the open standard specifications, so the main focus of this context is the file handling and parsing the results of the received .ofx
files from the financial institutions, as well the transformation from the source format to Xml and Json. Custom output formats are possible to extend and implement through available interfaces and abstractions.
The following list shows the supported specification versions and its current implementation state:
Specification | Availability | Stage |
---|---|---|
Author: Eric Roberto Darruiz (GitHub @edarruiz)
There are no dedicated developers for this project, so development is entirely based on voluntary effort. I am working on this project in my spare time, whenever my work schedule and business projects allow me to do so.
If you are interested on this project, you can contribute as well.
Here are some guidelines concerning contributions:
- All contributions should be done on
contrib
. main
is only for PR and stable code roadmap.- Every pull request should preferably be linked to a GitHub issue.
- Write unit tests, if applicable.
- Don't be afraid to suggest any changes that can help the goal of this SDK. New ideas are always welcome!
This project has the following requirements:
- Visual Studio 2022
- .NET 8.0
- C# 12.0 (What is new in C# 12?)
The following versions of Visual Studio are supported to build the solution:
- Visual Studio 2022 17.8.3 or later (stable)
- Visual Studio 2002 Preview 17.9.0 Preview 2.0 or later (unstable)
Here you can find the OFX SDK Documentation.
Here you can find the OFX SDK development roadmap