# 快速开始

5 分钟跑通第一个移动代理请求。流程与住宅类似，差别在 `type` 字段和 KYC。

## 1. 完成 KYC（一次性）

移动产品需先通过实名验证。进入 **控制台 → 账户 → KYC** 填写资料，通常 1 个工作日内审核通过。所需材料清单见 [身份验证 (KYC)](/helodata-zh/zhang-hu-yu-ji-fei/kyc.md)。

KYC 通过前，对 `type-mob` 的请求会返回 `403` + `X-Helodata-Error-Code: kyc-required`。

## 2. 创建移动子账号

1. 进入 **控制台 → 移动 → 子账号 → 创建子账号**。
2. 命名并设置密码。
3. 复制分配的子账号名（如 `s1a2b3c4d5e`）。

移动子账号的计费与限速与住宅子账号**独立**。

## 3. 拼装用户名

最简形态——任意美国移动 IP：

```
helo_s1a2b3c4d5e-type-mob-region-us
```

绑定特定运营商时追加 ASN——**强烈建议**移动场景都加，详见 [ASN 定位](/helodata-zh/chan-pin/overview-1/asn-targeting.md)：

```
helo_s1a2b3c4d5e-type-mob-region-us-asn-6167   # Verizon Wireless
```

## 4. 发送请求

### curl

```bash
curl -x http://helo_s1a2b3c4d5e-type-mob-region-us:PASSWORD@gate.helodata.io:7777 \
     https://ipv4.icanhazip.com
```

### Python (requests)

```python
import requests

USER = "helo_s1a2b3c4d5e-type-mob-region-us-asn-6167"
PASS = "PASSWORD"
proxy = f"http://{USER}:{PASS}@gate.helodata.io:7777"

r = requests.get(
    "https://ipv4.icanhazip.com",
    proxies={"http": proxy, "https": proxy},
    timeout=60,                                    # 移动较慢，调大超时
)
print(r.text.strip())
```

### Node.js (undici)

```js
import { fetch, ProxyAgent } from "undici";

const user = "helo_s1a2b3c4d5e-type-mob-region-us-asn-6167";
const pass = "PASSWORD";
const agent = new ProxyAgent(`http://${user}:${pass}@gate.helodata.io:7777`);

const res = await fetch("https://ipv4.icanhazip.com", { dispatcher: agent });
console.log((await res.text()).trim());
```

首跳延迟约 1–3 秒，移动网络比有线慢。客户端超时建议至少 30 秒。

## 5. 常见进阶

| 目标              | 在用户名上追加                                           |
| --------------- | ------------------------------------------------- |
| 绑定运营商           | `-asn-2516`（KDDI）、`-asn-6167`（Verizon Wireless）…… |
| 保持同一 IP 最长 1 小时 | `-session-job1-sesstime-60`                       |
| 切换国家            | 替换 `-region-us`                                   |

## 下一步

* [ASN 定位](/helodata-zh/chan-pin/overview-1/asn-targeting.md) — 移动场景推荐每个用例都加
* [会话与轮换](/helodata-zh/chan-pin/overview-1/sessions-and-rotation.md) — 移动粘性会话最长 60 分钟
* [身份验证 (KYC)](/helodata-zh/zhang-hu-yu-ji-fei/kyc.md) — 移动产品必需


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.helodata.com/helodata-zh/chan-pin/overview-1/quick-start.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
