Skip to main content
GET
/
budget-cards
/
{id}
Get card details
curl --request GET \
  --url https://business.bfinance.app/external/api/budget-cards/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "maskedCardNumber": "**** **** **** 1234",
  "currency": "EUR",
  "status": "active",
  "externalCardId": "<string>",
  "sensitive": {
    "number": "5168 3214 5678 1234",
    "expire": "07/29",
    "cvc": "***"
  }
}

Authorizations

Authorization
string
header
required

JWT authentication token

Path Parameters

id
string
required

Internal card ID or externalCardId

Response

Card found

id
string

Internal card ID

maskedCardNumber
string

Masked PAN

Example:

"**** **** **** 1234"

currency
string
Example:

"EUR"

status
string

Card status (active, blocked, deleted, etc.)

Example:

"active"

externalCardId
string
sensitive
object

Full PAN data (CVC masked when returned outside /sensitive)