Skip to main content
GET
/
api
/
v1
/
cards
/
{id}
curl https://api.agentcard.sh/api/v1/cards/cm3abc123 \
  -H "Authorization: Bearer sk_test_..."
{
  "id": "cm3abc123",
  "cardholderId": "ch_abc123",
  "last4": "4242",
  "expiry": "03/28",
  "spendLimitCents": 1000,
  "balanceCents": 750,
  "status": "OPEN",
  "createdAt": "2026-03-10T12:00:00.000Z"
}
Returns a card’s summary information. Does not include the full card number or CVV. Use Get Card Details for sensitive fields.

Path parameters

id
string
required
The card ID.

Response

id
string
Unique card identifier.
cardholderId
string
The cardholder this card belongs to, if any.
last4
string
Last 4 digits of the card number.
expiry
string
Expiration date in MM/YY format.
spendLimitCents
integer
The card’s total spend limit in cents.
balanceCents
integer
Remaining balance in cents.
status
string
OPEN or CLOSED.
createdAt
string
ISO 8601 creation timestamp.
curl https://api.agentcard.sh/api/v1/cards/cm3abc123 \
  -H "Authorization: Bearer sk_test_..."
{
  "id": "cm3abc123",
  "cardholderId": "ch_abc123",
  "last4": "4242",
  "expiry": "03/28",
  "spendLimitCents": 1000,
  "balanceCents": 750,
  "status": "OPEN",
  "createdAt": "2026-03-10T12:00:00.000Z"
}