All Projects → ckotzbauer → n26-api

ckotzbauer / n26-api

Licence: MIT license
Just another api-client for the N26 Bank.

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to n26-api

n26-api
Unofficial N26 Bank API documentation
Stars: ✭ 41 (+127.78%)
Mutual labels:  banking, n26
obp-apis
OpenBankingProject.ch Community APIs
Stars: ✭ 18 (+0%)
Mutual labels:  banking
bankster
An IBAN account numbers and BIC validation tool for Elixir.
Stars: ✭ 28 (+55.56%)
Mutual labels:  banking
mxfactorial
a payment application intended for deployment by the united states treasury
Stars: ✭ 36 (+100%)
Mutual labels:  banking
terms-dictionary
Simple definitions of terms, acronyms, abbreviations, companies, and projects related to financial services and Moov.
Stars: ✭ 48 (+166.67%)
Mutual labels:  banking
pyitau
Unofficial client to access your Itaú bank data
Stars: ✭ 28 (+55.56%)
Mutual labels:  banking
python-aqbanking
AqBanking wrapper for python
Stars: ✭ 14 (-22.22%)
Mutual labels:  banking
gb banking
FiveM Extended Banking Script
Stars: ✭ 14 (-22.22%)
Mutual labels:  banking
Bank-Account-Simulation
A Bank Account Simulation with JavaFX and SQLite back-end. Material UX|UI.
Stars: ✭ 19 (+5.56%)
Mutual labels:  banking
AlphaBankUI-Android
Check out the new style for App Design aims for the Banking Applications...😉😀😁😎
Stars: ✭ 45 (+150%)
Mutual labels:  banking
django-concurrency-talk
🎭 Database Integrity in Django: Safely Handling Critical Data in Distributed Systems
Stars: ✭ 49 (+172.22%)
Mutual labels:  banking
retail-banking
Consumer Banking Application
Stars: ✭ 25 (+38.89%)
Mutual labels:  banking
NetCore8583
NetCore8583 is a library that helps parse/read and generate ISO 8583 messages for .NET Core
Stars: ✭ 24 (+33.33%)
Mutual labels:  banking
ibandit
Convert national banking details into IBANs, and vice-versa.
Stars: ✭ 90 (+400%)
Mutual labels:  banking
powerauth-mobile-sdk
PowerAuth Mobile SDK for adds capability for authentication and transaction signing into the mobile apps (ios, watchos, android).
Stars: ✭ 27 (+50%)
Mutual labels:  banking
js-sdk
JavaScript SDK for connecting to Kontist
Stars: ✭ 13 (-27.78%)
Mutual labels:  banking
Loan-Web
ML-powered Loan-Marketer Customer Filtering Engine
Stars: ✭ 13 (-27.78%)
Mutual labels:  banking
avanza
A Python library for the unofficial Avanza API
Stars: ✭ 54 (+200%)
Mutual labels:  banking
quant-jobs-zurich
A list of companies of possible interest for mathematicians (or related) that are looking for a job in quantitative finance in Zurich.
Stars: ✭ 59 (+227.78%)
Mutual labels:  banking
MGObfuscator
An easy encryptor / decryptor for iOS
Stars: ✭ 17 (-5.56%)
Mutual labels:  banking

N26 API

build NPM

DEPRECATED: This project is not maintained anymore.

Just another api-client for the N26 Bank.

Installation

npm install n26-api

Methods

    authenticate(): Promise<void>;
    getBalance(): Promise<Balance>;
    getInfo(): Promise<PersonalInfo>;
    getStatus(): Promise<Statuses>;
    getAddresses(): Promise<Addresses>;
    getCards(): Promise<Card[]>;
    getLimits(): Promise<Limit[]>;
    getContacts(): Promise<Contact[]>;
    getTransactions(from: Date, to: Date, limit: string): Promise<Transaction[]>;
    getStatements(): Promise<Statement[]>;
    getStatement(id: string): Promise<ReadStream>;
    getSpaces(): Promise<Spaces>;

Example

import { N26 } from "./N26";
import { Balance } from "./contracts/Balance";

const api: N26 = new N26("yourUserName", "yourPassword");
api.authenticate()
    .then(() => api.getBalance())
    .then((balance: Balance) => console.info(balance))
    .catch(console.error);

License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].