Authorization
Bearer token. Format: Bearer <token>
Query Parameters
Filter cards by their current lifecycle status.Options: active, frozen, terminated, awaiting_deposit
Maximum number of cards to return per page. Max: 50.
A cursor for use in pagination. startingAfter is a card ID that defines your place in the list.
Response
Whether there are more cards available beyond this page.
Card Object Attributes
Unique card identifier. Format: crd_<16 chars>
The card network credential. Values: visa, mastercard
The last 4 digits of the PAN.
The current available USD balance on the card.
Current card status. Values: active, frozen, terminated, awaiting_deposit
ISO 8601 timestamp indicating when the card was provisioned.
curl --request GET \
--url 'https://api.havn.finance/v1/cards?limit=2&status=active' \
--header 'Authorization: Bearer havn_live_abc123def456'
{
"data": [
{
"id": "crd_8f7b2c9a1e3d4f5b",
"network": "visa",
"last4": "4242",
"balance": 1845.50,
"status": "active",
"createdAt": "2026-02-10T14:30:00Z"
},
{
"id": "crd_9a8c7d6b5c4f3e2a",
"network": "mastercard",
"last4": "8899",
"balance": 120.00,
"status": "active",
"createdAt": "2026-02-18T09:15:22Z"
}
],
"hasMore": false
}