Overviewβ
Retrieve detailed card information, including the card product name, card type, masked card number, cardholder information, card transaction restrictions, balance, and other related details. Use the card_id returned by the Add Card to query the corresponding card details.
- Resquest
cURL -X GET /cards/{card_id}/detail
-H 'Content-Type: application/json'
-H 'Authorization: {token}'
Card Product Nameβ
Card Product Name, which represents the card product, card range, or card issuance program to which the card belongs. It is used to distinguish different card types or card issuance plans.
- Response
"data": {
"product_name": "***26452HKMastercard"
}
Account IDβ
Returns the Account ID associated with the current card.
- Response
"data": {
"account_id": "1016X10037037910494"
}
Cardholderβ
Returns the card_holder_id of the cardholder associated with the current card.
- Response
"data": {
"card_holder_id": "2069738512683974656",
}
Card Reference Numberβ
Returns the card_no, which represents the Virtual Card Number in the current account system.
- Response
"data": {
"card_no": 2716020776676196990,
}
Card Number Detailsβ
Retrieve the card_number and card_validity_time.
- Response
"data": {
"card_id": 1954802358738284544,
"card_number": "527375 **** 4392",
"card_validity_time": "2027-08-01T00:00:00+08:00"
}
Account Card Typeβ
Retrieve the current account card type (program_value).
- Response
"data": {
"program_value": 15,
"program_cn_name": "OTA",
"program_en_name": "USD OTA"
}
Card Statusβ
Retrieve the current card status.
- Response
"data": {
"card_status": "Activate",
}
Card Transaction Limitsβ
Retrieve all transaction limits currently set on the card risk_list.
- Response
"data": {
"risk_list": [
{
"trade_risk_name": "purchase_1d",
"trade_risk_value": "100"
},
{
"trade_risk_name": "blocked_countries",
"trade_risk_value": "US"
}
],
}
Card Limitsβ
Retrieve the current card limit information:
max_value: Total card limit.current_value: Used amount.available_value: Available Amount.
- Response
"data": {
"max_value": "",
"current_value": "",
"available_value": "",
}
Response Exampleβ
- Response
{
"code": "200",
"msg": "SUCCESS",
"trace_id": "daf5560f9f5f4da7b80eaa5b9059158a",
"data": {
"card_id": 2070330939392872448,
"card_number": "222333 **** 1955",
"card_name": "TEST",
"card_status": "Activate",
"create_time": "2026-06-26T10:18:56+08:00",
"card_remark": null,
"card_validity_time": "2026-07-01T00:00:00+08:00",
"card_desc": "",
"risk_list": [
{
"trade_risk_name": "purchase_1d",
"trade_risk_value": "100"
},
{
"trade_risk_name": "blocked_countries",
"trade_risk_value": "US"
}
],
"program_value": 2,
"program_cn_name": "OTA",
"program_en_name": "OTA_USD",
"card_holder_id": 2069738512683974656,
"create_status": 1,
"create_resp_msg": null,
"account_id": "1016X10037037910494",
"card_no": "9122031273929585023",
"max_value": null,
"current_value": null,
"available_value": null,
"pause_reason": null,
"product_name": "1"
}
}