ACB ONE app icon

ACB ONE API

越南 零售银行

亚洲商业银行(越南)—— 用户名/密码登录、资料、余额与交易。

概览

💡

基础 URL: https://api.openbankinggateway.com — 所有响应均采用统一的 {code, data} 结构。

会话流程: 完成登录端点即可获得网关 token,随后在每个需要鉴权的端点以 token= 传入。

透明性: 每个响应(无论成功或失败)都在 data.upstream 下附带原始的上游金融科技 JSON。

在下方任意端点填入参数并点击 Send request 即可调用在线网关,或复制 curl 示例在终端中运行。

Discovery

GET/api/acb/check-user

Check if username exists (phone required)

ParameterInValue
phone*query
curl -X GET 'https://api.openbankinggateway.com/api/acb/check-user?phone=0399123456'

Auth

POST/api/acb/login

Login with username and password

ParameterInValue
phone*query
password*query
curl -X POST 'https://api.openbankinggateway.com/api/acb/login?phone=0399123456&password=<password>'

Account

GET/api/acb/profile

User profile information (token required)

ParameterInValue
token*query
curl -X GET 'https://api.openbankinggateway.com/api/acb/profile?token=<token>'
GET/api/acb/balance

Account balance (token required)

ParameterInValue
token*query
curl -X GET 'https://api.openbankinggateway.com/api/acb/balance?token=<token>'
GET/api/acb/transaction-history

Transaction history with pagination (token required)

ParameterInValue
token*query
pageNum*query
pageSize*query
curl -X GET 'https://api.openbankinggateway.com/api/acb/transaction-history?token=<token>&pageNum=1&pageSize=20'