> ## Documentation Index
> Fetch the complete documentation index at: https://developer.speedpay.hk/llms.txt
> Use this file to discover all available pages before exploring further.

# 三要素查询

> 查询 Visa 卡号、有效期、CVV 等敏感信息。

## 接口信息

| 项目            | 说明                                                  |
| ------------- | --------------------------------------------------- |
| 方法            | `POST`                                              |
| 路径            | `/mc-platformapi/v1/open/et/vs/card/details/query`  |
| Content-Type  | `application/json`                                  |
| Authorization | 完整 JSON 请求体经 `SHA256withRSA` 签名后再 `BASE64` 编码得到的签名值 |

## 请求参数

| 字段          | 类型        | 必填 | 说明                |
| ----------- | --------- | -- | ----------------- |
| `app_id`    | `string`  | 是  | 应用 ID，在商户平台生成     |
| `timestamp` | `integer` | 是  | Unix 秒级时间戳，参与请求验签 |
| `card_no`   | `string`  | 是  | Visa 卡号           |
| `pay_pwd`   | `string`  | 是  | 支付密码              |

## 请求示例

```json theme={null}
{
  "app_id": "app_123456",
  "timestamp": 1784880000,
  "card_no": "493875******0990",
  "pay_pwd": "123456"
}
```

## 返回字段

返回三要素查询结果，通常包含卡号、有效期和 CVV 等敏感信息。

## 返回示例

```json theme={null}
{
  "code": 0,
  "msg": "success",
  "data": {
    "card_no": "4938751234560990",
    "cvv": "123",
    "exp": "12/30"
  }
}
```

## 安全要求

三要素属于高敏感信息。商户侧应限制访问权限，不要在普通业务日志中输出完整卡号、CVV 或有效期。
