Skip to main content
GET
/
cards
/
{id}
Get card details
curl --request GET \
  --url https://business.bfinance.app/external/api/cards/{id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "data": {
    "id": "<string>",
    "maskedCardNumber": "<string>",
    "sensetive": {
      "number": "<string>",
      "expire": "<string>",
      "cvc": "<string>"
    },
    "currency": "<string>",
    "status": "<string>",
    "externalCardId": "<string>",
    "balance": {
      "value": 123,
      "currency": "<string>"
    },
    "label": "<string>",
    "cardHolder": {
      "firstName": "<string>",
      "lastName": "<string>",
      "customerId": "<string>"
    },
    "email": "<string>",
    "phone": "<string>"
  }
}

Authorizations

Authorization
string
header
required

JWT authentication token

Path Parameters

id
string
required

ID or external ID of the card

Response

Successfully retrieved card details

status
string
Example:

"success"

data
object