KWAP lets customers access their own bank data as a service. It works over standard HTTP POST; a single endpoint returns account lists and transactions.
POST https://app.kobakus.com/webservice/BankPaymentList.php Content-Type: application/x-www-form-urlencoded. All requests take parameters in the POST body.
Returns all bank accounts and balances defined for the firm.
| Parameter | Type | Required | Description |
|---|---|---|---|
firmCode | string | Y | Firm code |
password | string | Y | API password |
channelCode | string | Y | User / channel code |
requestMethod | string | Y | "Accounts" |
| Field | Type | Description |
|---|---|---|
msg | string | Result message — "OK" on success, otherwise the error |
BankCode | string | EFT (bank) code |
BankName | string | Bank name |
LocalAccount | string | Account number |
Iban | string | Account IBAN |
Balance | int | Account balance |
AvailableBalance | int | Available balance |
Blocked | int | Blocked amount |
Currency | string | Currency code |
AccountType | string | Account type (demand / time / blocked) |
Branch / BranchNo | string | Branch name / code |
Updated | date | Last bank sync time |
Returns account movements within the given date range.
| Parameter | Type | Required | Description |
|---|---|---|---|
firmCode | string | Y | Firm code |
password | string | Y | API password |
channelCode | string | Y | User / channel code |
requestMethod | string | Y | "Transactions" |
startDate | date (Y-m-d H:i:s) | Y | Start datetime |
endDate | date (Y-m-d H:i:s) | Y | End datetime |
POST /webservice/BankPaymentList.php HTTP/1.1 Host: app.kobakus.com Content-Type: application/x-www-form-urlencoded firmCode=string&password=string&channelCode=string&requestMethod=Accounts
Download the Postman collection above for ready requests. Contact our team for the full field list and code samples.
Test with the free sandbox; submit the application form for live access.