Skip to main content
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": ""
      }
    }]
  }
}
Retrieves the list of supported card BINs (authorization mode).

Request Headers

Api-Key
string
required
apiKey (merchant credential, bound to IP whitelist)
Timestamp
string
required
Unix timestamp in milliseconds. The deviation from the server time must be within 60 seconds, and future timestamps are not accepted.
Access-Token
string
required
Login token (required for all interfaces except Get Token).
Content-Type
string
default:"application/json"
Fixed to application/json

Request Body

card_bin_no
string
Card BIN order number.
page
number
default:"0"
Query page number. Defaults to 0.
size
number
default:"10"
Number of records per page. Defaults to 10 (max 100).

Response Parameters

code
number
Response status code. 0 indicates success.
msg
string
Response message.
data
object
Response data.
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": ""
      }
    }]
  }
}