Card

Get card

Get a credit card by ID associated with the current user.

get/card/{id}

Path parameters

idstring required

ID of the card to get.

Example:crd_XXXXXXXXXXXXXXXXXXXXXXXXX

Response

Credit card details.

Example response

{
  "data": {
    "id": "crd_XXXXXXXXXXXXXXXXXXXXXXXXX",
    "brand": "Visa",
    "expiration": {
      "month": 12,
      "year": 2023
    },
    "last4": "1234"
  }
}

Changes