Sample: Query Transactions (pseudo-code)
POST /api/v1/n26/transactions
Content-Type: application/json
Authorization: Bearer <ACCESS_TOKEN>
{
"account_id": "ACCT-12345",
"from_date": "2025-10-01",
"to_date": "2025-10-31",
"type": "ALL",
"page": 1,
"page_size": 100
}
Response: {
"status": "OK",
"transactions": [
{"id":"TXN-001","date":"2025-10-02","amount":-12.34,"description":"Coffee Shop","currency":"EUR"},
{"id":"TXN-002","date":"2025-10-03","amount":1200.00,"description":"Salary","currency":"EUR"}
],
"next_page": 2
}
Key Integration Scenarios
Account aggregation, transaction reconciliation, payments (QR / Scan & Pay), investments and portfolio data exports, webhook events and multi-region deployment.