> ## 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 支持的国家列表

```http theme={null}
POST /mc-platformapi/v1/open/et/vs/card/support/country
```

## 请求参数

| 名称          | 位置   | 类型      | 必选 | 说明    |
| ----------- | ---- | ------- | -- | ----- |
| `app_id`    | body | string  | 是  | 应用 ID |
| `timestamp` | body | integer | 是  | 时间戳   |

## 返回字段

| 字段                    | 类型     | 说明                       |
| --------------------- | ------ | ------------------------ |
| `data.list[].code`    | string | 国家代码（ISO 3166-1 alpha-3） |
| `data.list[].name`    | string | 国家英文名                    |
| `data.list[].name_cn` | string | 国家中文名                    |

## 返回示例

```json theme={null}
{
  "code": 0,
  "data": {
    "list": [
      { "code": "HKG", "name": "Hong Kong", "name_cn": "香港" },
      { "code": "CHN", "name": "China", "name_cn": "中国" },
      { "code": "USA", "name": "United States of America", "name_cn": "美国" }
    ]
  },
  "msg": "success"
}
```

<Note>
  完整列表返回 150+ 国家代码，按需调用获取。
</Note>
