# Reveal card details

**GET** `/issuing/cards/{card_id}/reveal`

Reveal a card's full details. Authenticate with a card reveal token instead of your API key, sent as `Authorization: Bearer &lt;card_reveal_token_id&gt;`. Create one with the create card reveal token endpoint; each token is single use, expires, and only works for the card it was created for.

### Path Parameters

- `card_id` `string` _(required)_ — Unique identifier for the card.

**Request**

```shell
curl 'https://api.column.com/issuing/cards/<card_id>/reveal' \
  -u :<YOUR API KEY>
```

**Response 200**

```json
{
  "cardholder_name": "Oliver Hockey",
  "cvv2": "123",
  "expiration_date": {
    "month": "01",
    "year": "2020"
  },
  "pan": "4000XXXXXXXX1234"
}
```
