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

# 俄罗斯用户使用 API 需要 VPN 吗？

> 说明俄罗斯区域站点的直连访问方式、无需 VPN 的使用场景，以及网络异常时的排查步骤。

## 简短答案

俄罗斯区域站点面向俄罗斯用户提供直连访问。正常情况下，你可以直接访问网站和 API endpoint，无需 VPN。

如果你在俄罗斯本地使用 Claude Code、Codex、Cursor、Cline、OpenCode、OpenClaw 或其他外部工具，重点是填写正确的 Base URL、API Key 和 Model ID，而不是额外配置 VPN。

## 推荐访问方式

| 场景                                        | 推荐地址                        |
| ----------------------------------------- | --------------------------- |
| 网站和控制台                                    | `https://www.llmeasy.ru`    |
| 文档                                        | `https://docs.llmeasy.ru`   |
| Claude Code / Anthropic-compatible        | `https://www.llmeasy.ru`    |
| Codex、Cursor、Cline 等 OpenAI-compatible 工具 | `https://www.llmeasy.ru/v1` |

俄罗斯区域站点使用 LLMEasy 域名；对应的 Base URL、注册入口、控制台和模型广场都以 LLMEasy 站点为准。

## 什么时候不需要 VPN

* 访问 LLMEasy 网站和控制台
* 创建或管理 API Key
* 在 Claude Code 中配置 Anthropic-compatible endpoint
* 在 Codex、Cursor、Cline、OpenCode、OpenClaw 中配置 OpenAI-compatible endpoint
* 查看文档、模型广场和用量记录

VPN 反而可能让请求经过不稳定线路，导致延迟变高、TLS 校验异常或风控误判。除非你的公司网络有特殊限制，一般不建议把 VPN 当成默认配置。

## 如果无法访问，先检查这些

1. 确认域名写对：主站和文档站不要混用。
2. 确认使用 HTTPS：地址应以 `https://` 开头。
3. 检查本地系统时间，时间错误可能导致 TLS 证书校验失败。
4. 切换网络测试，例如从公司网络切到手机热点。
5. 检查本地防火墙、代理软件、杀毒软件是否拦截了请求。
6. 在工具里确认 Base URL 没有多写路径，例如把 `/v1` 填到 Claude Code 的 Anthropic-compatible 配置中。

## 简单测试命令

你可以先测试站点是否可访问：

```bash theme={null}
curl -I https://www.llmeasy.ru
curl -I https://docs.llmeasy.ru
```

如果你要测试 OpenAI-compatible endpoint，可以使用：

```bash theme={null}
curl -I https://www.llmeasy.ru/v1
```

`curl -I` 只检查连接和响应头，不会验证你的 API Key 是否可用。API Key 是否正确，需要通过实际模型请求或工具内置的测试功能确认。

## 常见误区

* 把“无需 VPN”理解为所有网络环境都不会出问题。
* 把 Claude Code 的 Base URL 写成 `https://www.llmeasy.ru/v1`。
* 把 Codex、Cursor、Cline 的 Base URL 写成不带 `/v1` 的根地址。
* 在 VPN、代理、本地网关之间反复切换，导致工具实际请求路径不确定。
* 只测试文档站点，不测试 API Base URL。

## 关于 LLMEasy

俄罗斯区域服务使用 LLMEasy 域名。俄罗斯用户优先使用区域站点的注册链接、控制台和 API Base URL；这样可以减少支付、访问和网络链路上的不确定性。

## Related docs

* [Base URL 怎么填？](/zh/faq/model-calling/base-url-config)
* [如何选择合适的 AI 模型？](/zh/faq/model-calling/model-selection-guide)
* [OpenAI-compatible API 和 Anthropic-compatible API 有什么区别？](/zh/faq/concepts/openai-compatible-vs-anthropic-compatible)
