# AI 告诉印度居民，他们可以在国外开立外币账户而无需事先获得印度储备银行批准，忽略了 FEMA 限制

- **ID:** `banking/india-foreign-currency-account-fema`
- **领域:** banking
- **类别:** auth_error
- **错误码:** `FEMA_ACCOUNT_VIOLATION`
- **验证级别:** ai_generated
- **修复率:** 80%

## 根因

根据印度外汇管理法 (FEMA)，印度居民只有在事先获得印度储备银行批准或根据自由汇款计划 (LRS) 每年 25 万美元限额内，才能在境外开立外币账户，超出部分需要特定授权。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| FEMA 1999 (with 2023 amendments) | active | — | — |
| RBI LRS Guidelines v2024 | active | — | — |
| Form FC v2.0 | active | — | — |

## 解决方案

1. ```
   Apply for RBI approval via the Form FC (Foreign Currency Account) submission to the Reserve Bank of India, with a detailed justification.
   ```
2. ```
   Use the LRS route: remit up to $250,000 per financial year to a foreign account, ensuring the total stays within the limit.
   ```
3. ```
   Example code to check LRS limit via RBI's API (conceptual):
import requests
url = 'https://api.rbi.org.in/lrs/v1/limit?pan=ABCDE1234F'
headers = {'Authorization': 'Bearer {token}'}
response = requests.get(url, headers=headers)
limit_used = response.json()['data']['used_amount']
if limit_used > 250000:
    print('LRS limit exceeded, need RBI approval')
   ```

## 无效尝试

- **** — RBI monitors large transactions through banking channels, and such transfers can be flagged as money laundering under PMLA. (95% 失败率)
- **** — Indian residents are still subject to FEMA regardless of where the account is opened; non-compliance can lead to penalties up to 300% of the amount. (85% 失败率)
- **** — Business accounts abroad require RBI's specific approval under FEMA 1999, and misrepresentation is a criminal offense. (70% 失败率)
