curl --request POST \
--url https://sandbox-openplatform.keysecure.io/open-api/v1/card/support/bins \
--header 'Content-Type: application/json' \
--header 'Api-Key: your_api_key' \
--header 'Timestamp: 1716307200000' \
--header 'Access-Token: your_access_token' \
--data '{
"card_bin_no": "",
"page": 0,
"size": 10
}'
{
"code": 0,
"msg": "Success",
"data": {
"list": [{
"card_bin_no": "",
"card_bin": "",
"organization": "",
"support_physical": true,
"support_virtual": true,
"currencies": ["USD"],
"balance_limit": {
"limit_balance": "",
"limit_week_balance": "",
"limit_atm_day_balance": "",
"limit_atm_month_balance": ""
}
}]
}
}
卡相关
获取支持卡 BIN
POST
/
open-api
/
v1
/
card
/
support
/
bins
curl --request POST \
--url https://sandbox-openplatform.keysecure.io/open-api/v1/card/support/bins \
--header 'Content-Type: application/json' \
--header 'Api-Key: your_api_key' \
--header 'Timestamp: 1716307200000' \
--header 'Access-Token: your_access_token' \
--data '{
"card_bin_no": "",
"page": 0,
"size": 10
}'
{
"code": 0,
"msg": "Success",
"data": {
"list": [{
"card_bin_no": "",
"card_bin": "",
"organization": "",
"support_physical": true,
"support_virtual": true,
"currencies": ["USD"],
"balance_limit": {
"limit_balance": "",
"limit_week_balance": "",
"limit_atm_day_balance": "",
"limit_atm_month_balance": ""
}
}]
}
}
获取支持的卡 BIN 列表(授权模式)。
请求头
apiKey(商户凭证,与 IP 白名单绑定)
Unix 时间戳(毫秒),与服务端偏差须在 60 秒内,且不接受未来时间戳
登录标识(除获取 Token 外必填)
固定为
application/json请求体
卡 BIN 单号
查询页码,默认
0查询条数,默认
10(最多 100 条)返回参数
响应状态码,
0 表示成功响应消息
返回数据
显示 data
显示 data
BIN 列表
显示 list
显示 list
卡 BIN 单号
卡 BIN
卡组织
是否支持实体卡(true-支持,false-不支持)
是否支持虚拟卡(true-支持,false-不支持)
卡基础币种
curl --request POST \
--url https://sandbox-openplatform.keysecure.io/open-api/v1/card/support/bins \
--header 'Content-Type: application/json' \
--header 'Api-Key: your_api_key' \
--header 'Timestamp: 1716307200000' \
--header 'Access-Token: your_access_token' \
--data '{
"card_bin_no": "",
"page": 0,
"size": 10
}'
{
"code": 0,
"msg": "Success",
"data": {
"list": [{
"card_bin_no": "",
"card_bin": "",
"organization": "",
"support_physical": true,
"support_virtual": true,
"currencies": ["USD"],
"balance_limit": {
"limit_balance": "",
"limit_week_balance": "",
"limit_atm_day_balance": "",
"limit_atm_month_balance": ""
}
}]
}
}
⌘I
