Get Detailed Information for a Card
GET/api/v1/cards/card/details
Retrieves detailed information for a specific card, including masked data for security.
Request
Query Parameters
The unique identifier of the card for which details are being requested.
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
- MOD1
- MOD2
- MOD1
- MOD2
- Array [
- ]
- MOD1
- MOD2
- MOD1
- MOD2
- MOD1
- MOD2
- MOD1
- MOD2
cardholder_id object
string
string
Possible values: [physical, virtual]
An enumeration.
card_id object required
string
string
settings object
The starting datetime from which card transactions will be authorized. Transactions attempted before this time are automatically rejected.
The ending datetime until which card transactions will be authorized. Transactions attempted after this time are automatically rejected.
A list of currencies in which transactions are permitted. If this field is absent, null, or an empty array, transactions in all currencies are allowed.
An enumeration.
limits object[]
Transaction limits based on interval and amount. If no limits are set, will be used next values: PER_TRANSACTION - 1000 USD, DAILY - 5000 USD.
An enumeration.
The maximum amount allowed for the specified interval.
bin object
Possible values: [airwallex, sunrate, wex, connex, matchmove]
An enumeration.
The specific code of the BIN.
Possible values: [CARDS_VIRTUAL, SHARED_BALANCE_VIRTUAL_CARDS]
Possible values: [GooglePay, ApplePay, SamsungPay]
An optional list of payment services supported by this BIN, such as mobile payment platforms like Google Pay or Apple Pay.
An optional list of merchant names that are specifically allowed to process payments using this BIN.
Indicates if the BIN is tokenizable.
An enumeration.
address_id object
The unique identifier of the address associated with the BIN.
string
string
currency_id object
The unique identifier of the currency associated with the BIN.
string
string
id object required
The unique identifier of the BIN.
string
string
address object
country objectrequired
currency object
balance object
card_id object required
The unique identifier of the card.
string
string
The total spending limit of the card, applicable over the card's lifetime.
The current available spending limit on the card. Calculated as available' = 'limit' - 'used'.
The total amount that has been used from the card. This is equivalent to the 'spend' amount in other endpoints.
The balance of the card at the time of its issuance.
The total amount added to the card through top-ups.
The maximum limit allowed for a single transaction.
The total amount in transactions that are currently pending.
The total sum of fees charged to the card.
The total amount of external payments received on the card. Currently not supported.
The total amount withdrawn from the card, including limit decrease operations.
Default value: true
Default value: true
Default value: false
{
"cardholder_id": "string",
"card_id": "string",
"created_at": "string",
"closed_at": "string",
"mask_number": "string",
"nick_name": "string",
"status": "string",
"brand": "string",
"settings": {
"active_from": "string",
"active_to": "string",
"limits": [
{
"amount": 0
}
]
},
"bin": {
"vendor": "airwallex",
"code": "string",
"vendor_code": "string",
"purpose": [
"CARDS_VIRTUAL"
],
"issue": true,
"topup": true,
"withdrawal": true,
"tariff_data": {},
"paymentServices": [
null
],
"merchants": [
"string"
],
"isTokenizable": true,
"address_id": "string",
"currency_id": "string",
"id": "string",
"address": {
"country": {
"name": "string",
"iso_code": "string"
},
"city": "string",
"line_1": "string",
"line_2": "string",
"postal_code": "string"
},
"currency": {
"iso_code": "string",
"digital_code": "string"
}
},
"balance": {
"card_id": "string",
"limit": 0,
"available": 0,
"used": 0,
"opening_balance": 0,
"topup_balance": 0,
"limit_per_transaction": 0,
"pending_balance": 0,
"fees_balance": 0,
"incoming_balance": 0,
"withdrawal_balance": 0
},
"is_autolimit": true,
"is_withdrawable": true,
"is_tokenizable": false
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- MOD1
- MOD2
- ]
- ]
detail object[]
loc object[]required
string
integer
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}