Get saved card
Returns a single saved card by ID. Returns 404 if the card does not exist or is inactive, and 403 if the card belongs to a different tenant.
Path Parameters
Saved card ID
Responses
| Status | Description |
|---|---|
200 |
Saved card details |
200 response
Possible values: visa, mastercard, amex, discover, diners, jcb, unknown
True when the card expires within 30 days
Billing details associated with the saved card, if available
{
"data": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"card_token": "tokn_80aebb6ea2594a74bc215a64",
"card_last4": "1111",
"card_brand": "visa",
"card_exp_month": "12",
"card_exp_year": "2028",
"is_default": true,
"is_expiring_soon": false,
"created_at": "2026-04-08T10:00:00Z"
},
"error": null
}
Authorization
- ApiKeyAuth
Was this page helpful?