---
api: 'Business API'
---

# Retrieve sensitive card details

Get sensitive details of a specific card, based on its ID.

Requires the `READ_SENSITIVE_CARD_DATA` token scope. For more information, see the **Authorization** section.

:::note
- This feature is not available in Sandbox.
- To increase your account's card limits, please contact [Revolut API Support](mailto:api-requests@revolut.com).
:::

For more information, see the guides: [Manage cards](/docs/guides/manage-accounts/cards/manage-cards).

## Endpoint

GET `/cards/{card_id}/sensitive-details`

## Parameters

### path parameters

- `card_id` (string, required)
  The ID of the card for which to retrieve the sensitive details.

## Returns

### 200

Sensitive details of the card

#### Response attributes

- `pan` (string)
    The PAN (Primary Account Number) of the card.
- `cvv` (string)
    The CVV (Card Verification Value) of the card.
- `expiry` (string)
    The card expiration date.

## Error responses

| HTTP status code | Description |
| --- | --- |
| 400 | Bad request  Returned, for example, when you provide an invalid card ID in the path. |
| 403 | Action forbidden |
| 404 | Card doesn't exist |
