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

# 地理限制

> 了解 Polymarket CLOB API 的地理訪問限制

<Callout type="success">
  還沒有帳號？[點擊這裡註冊 Polymarket](https://polymarket.com/?r=2026VIP) 並完成入金，才能用錢包私鑰為訂單籤名、實際成交。
</Callout>

<Warning>
  **法律合規提醒**：在使用 Polymarket 服務或 API 前，請確認您所在地區的法律規定。Polymarket 目前不支援比利時、法國、新加坡、泰國、中國大陸等地區，政策可能隨時變化。
</Warning>

Polymarket 在某些地區受到訪問限制。在使用 API 之前，請確保您了解並遵守這些限制。

## 受限制的地區

Polymarket 目前不向以下地區的用戶提供服務：

<Warning>
  **受限制地區列表**：

  * 🇺🇸 美國及其領土
  * 🇨🇳 中國大陸
  * 🇫🇷 法國
  * 🇧🇪 比利時
  * 🇸🇬 新加坡
  * 🇹🇭 泰國
  * 以及其他受制裁的國家和地區
</Warning>

<Callout type="warning">
  該列表可能會更新。始終查看 [Polymarket 服務條款](https://polymarket.com/terms) 獲取最新信息。
</Callout>

## 地理檢測

Polymarket 使用多種方法檢測用戶位置：

1. **IP 地址檢測**：基於您的 IP 地址
2. **KYC 驗證**：某些功能可能需要身份驗證
3. **鏈上分析**：監控可疑活動

## API 訪問限制

當從受限制地區訪問時，您可能會遇到：

### HTTP 403 錯誤

```json theme={null}
{
  "error": "Forbidden",
  "message": "Access from your region is not permitted",
  "code": "REGION_RESTRICTED"
}
```

### 帳戶暫停

如果檢測到來自受限制地區的訪問，帳戶可能會被暫停。

## 合規性

<Warning>
  **重要提示**：

  * 使用 VPN 或代理規避地理限制**違反服務條款**
  * 這可能導致帳戶永久封禁和資金凍結
  * Polymarket 保留隨時終止訪問的權利
</Warning>

## 檢查您的訪問權限

```python theme={null}
# Python: 檢查您是否可以訪問 API
import requests

def check_access():
    try:
        response = requests.get('https://clob.polymarket.com/health')
        if response.status_code == 200:
            print("✓ 可以訪問 Polymarket API")
            return True
        elif response.status_code == 403:
            print("✗ 您的地區無法訪問 Polymarket")
            return False
        else:
            print(f"未知狀態: {response.status_code}")
            return False
    except Exception as e:
        print(f"錯誤: {e}")
        return False

check_access()
```

## 替代方案

如果您在受限制地區，可以考慮：

1. **其他預測市場平臺**：
   * Kalshi（美國用戶）
   * Manifold Markets
   * 其他去中心化平臺

2. **等待政策變化**：監控 Polymarket 的公告，了解地區可用性的變化

## 旅行時的訪問

如果您在旅行：

<Callout type="info">
  * **臨時訪問**：從允許的地區臨時訪問通常是可以的
  * **長期居住**：如果您搬到受限制地區，應停止使用服務
  * **通知**：如果您的情況發生變化，建議聯繫支援團隊
</Callout>

## 企業和機構用戶

如果您代表企業或機構：

* 聯繫 Polymarket 業務發展團隊
* 討論特殊安排或白名單
* 確保完全合規

## 下一步

<CardGroup cols={2}>
  <Card title="服務條款" icon="file-contract" href="https://polymarket.com/terms">
    閱讀完整的服務條款
  </Card>

  <Card title="CLOB 認證" icon="key" href="/api-tutorial/clob/authentication">
    如果您可以訪問，了解如何認證
  </Card>

  <Card title="快速開始" icon="rocket" href="/api-tutorial/clob/quickstart">
    開始使用 CLOB API
  </Card>

  <Card title="常見問題" icon="circle-question" href="/get-started/faq">
    查看常見問題解答
  </Card>
</CardGroup>
