---
title: "Get Card Payment Details"
method: GET
path: "/open-api/v3/cards/{id}"
tags: ["Card"]
---

# Get Card Payment Details

`GET /open-api/v3/cards/{id}`

Obtain secure card details, including sensitive information such as card number and secure tokens, for specific use cases. Sensitive card information (e.g., full card number, CVV) in the API response is encrypted using the Advanced Encryption Standard (AES) algorithm. The encryption key for AES is derived from the clientSecret. Non-sensitive fields (e.g., card BIN, last 4 digits of the card number) remain in plaintext to ensure business usability, as they do not involve core sensitive data.

## Path parameters

- `id` string, required — card id

## Query parameters

- `accountId` string, required

## Response `200`

OK

- CardPanResponse — card pan resources
  - `code` string — Return code
  - `message` string — Error message
  - `data` CardPanResource — Returned data
    - `pan` string — Primary Account Number, Returned as an AES-encrypted hex string.
    - `cvv` string — Card Verification Value, Returned as an AES-encrypted hex string.
    - `expYear` string — Expiration year, Returned as an AES-encrypted hex string.
    - `expMonth` string — Expiration month, Returned as an AES-encrypted hex string.
    - `bin` string — Card BIN
    - `cardLastFour` string — Last four digits of the card number

## Other responses

- `400` — Bad Request

---

[API](https://skmtc.net/interlace/apis/core-resource.md) · [All operations](https://skmtc.net/interlace/apis/core-resource/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/interlace/core-resource/versions/29c08a4da357/schema)
