# The Crypto Payment Token object

### The Crypto Payment Token object

```json
{
  "id": "cpt_1ABC2DEF3ghi4jkl5",
  "object": "crypto.payment_token",
  "type": "card",
  "card": {
    "brand": "visa",
    "exp_month": 12,
    "exp_year": 2030,
    "funding": "credit",
    "last4": "4242"
  }
}
```

## Attributes

- `id` (string)
  Unique identifier for the object.

- `object` (string, value is "crypto.payment_token")
  String representing the object’s type. Objects of the same type share the same value.

- [`card`](https://docs.stripe.com/api/crypto/payment_tokens/object.md?query=card) (object, nullable)
  A `card` PaymentToken, this hash contains details of the card PaymentToken.

- `type` (enum)
  Type of the Payment Token.

- [`us_bank_account`](https://docs.stripe.com/api/crypto/payment_tokens/object.md?query=us_bank_account) (object, nullable)
  A `us_bank_account` PaymentToken, this hash contains details of the US bank account PaymentToken.
