# AI 告诉英国非居民，个人账户的快速支付（FPS）没有每日限额

- **ID:** `banking/uk-faster-payment-limit-for-non-resident`
- **领域:** banking
- **类别:** config_error
- **错误码:** `FPS_LIMIT_EXCEEDED`
- **验证级别:** ai_generated
- **修复率:** 75%

## 根因

英国快速支付通常每笔交易限额为 25 万英镑，但大多数高街银行对非居民或基础账户设置了更低的每日限额（例如 1 万至 2.5 万英镑），超出限额会触发人工审核或拒绝。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| Faster Payments Scheme v2.0 | active | — | — |
| Monzo API v3.1 | active | — | — |
| HSBC UK Online Banking v2024.1 | active | — | — |

## 解决方案

1. ```
   Use a multi-day strategy: send £9,000 per day for three days to stay under the typical £10,000 daily cap.
   ```
2. ```
   Switch to a bank that offers higher FPS limits for non-residents, such as Monzo (up to £250,000 per day with verified account).
   ```
3. ```
   Example code to check FPS limit via Open Banking API (using Python and requests):
import requests
url = 'https://api.ob-bank.co.uk/open-banking/v3.1/accounts/{accountId}/limits'
headers = {'Authorization': 'Bearer {token}', 'x-fapi-financial-id': 'OB-123'}
response = requests.get(url, headers=headers)
print(response.json()['Data']['Limit'][0]['Amount'])
# Parse 'Amount' field to see daily limit
   ```

## 无效尝试

- **** — Many banks enforce a cumulative daily limit, not per-transaction, so multiple small transfers still hit the cap. (80% 失败率)
- **** — Non-resident accounts are often restricted by policy, and banks require documented income or a UK address for any increase. (70% 失败率)
- **** — CHAPS also has bank-specific limits and typically requires a UK-resident status or higher fee structure for non-residents. (60% 失败率)
