OBP-API/README.md

46 lines
1.6 KiB
Markdown
Raw Normal View History

2013-01-14 13:57:22 +00:00
# README
2011-10-16 13:40:36 +00:00
2014-12-27 18:28:18 +00:00
The Open Bank Project API
2011-10-16 13:40:36 +00:00
2013-01-14 13:57:22 +00:00
## ABOUT
The Open Bank Project is an open source API for banks that enables account holders to interact with their bank using a wider range of applications and services.
2014-12-27 18:28:18 +00:00
The OBP API supports transparency options (enabling account holders to share configurable views of their transaction data with trusted individuals and even the public), data blurring (to preserve sensitive information) and data enrichment (enabling users to add tags, comments and images to transactions).
2013-01-14 16:03:32 +00:00
Thus, the OBP API abstracts away the peculiarities of each core banking system so that a wide range of apps can interact with multiple banks on behalf of the account holder. We want to raise the bar of financial transparency and enable a rich ecosystem of innovative financial applications and services.
2013-01-14 16:03:32 +00:00
Our tag line is: Bank as a Platform. Transparency as an Asset.
The API uses OAuth 1.0 authentication.
2013-07-19 13:49:39 +00:00
The project roadmap is available [here.](https://trello.com/b/O9IjhPXB/open-bank-project-api)
2013-01-14 15:57:46 +00:00
## DOCUMENTATION
2013-01-14 13:57:22 +00:00
Please refer to the [wiki](https://github.com/OpenBankProject/OBP-API/wiki) to see the API specification.
2013-01-14 13:57:22 +00:00
## STATUS
2013-06-22 07:12:54 +00:00
[V1.2] (https://github.com/OpenBankProject/OBP-API/wiki/REST-API-V1.2) is mostly implemented
2013-01-14 13:57:22 +00:00
## LICENSE
This project is dual licensed under the AGPL V3 (see NOTICE) and a commercial license from TESOBE
Some files (OAuth related) are licensed under the Apache 2 license.
2013-01-14 13:57:22 +00:00
## SETUP
The project uses Maven 3 as its build tool.
2013-06-22 07:17:48 +00:00
2014-12-27 18:28:18 +00:00
To compile and run jetty, install Maven 3 and execute:
2013-01-14 13:57:22 +00:00
2014-12-27 18:28:18 +00:00
mvn jetty:run
2011-10-16 13:40:36 +00:00
----
2013-06-22 07:17:48 +00:00
# Databases:
The default datastores used are MongoDB (metadata, transaction cache) and Postgres (user accounts).
2014-12-27 18:28:18 +00:00