> For the complete documentation index, see [llms.txt](https://docs.helodata.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.helodata.com/helodata-zh/chan-pin/overview-1/quick-start.md).

# 快速开始

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

开始无需 KYC。若账户触发风险复核，我们可能在后续要求验证（见 [身份验证 (KYC)](/helodata-zh/zhang-hu-yu-ji-fei/kyc.md)）；届时在你完成前，请求可能返回 `403` + `X-Helodata-Error-Code: kyc-required`。

## 1. 创建移动子账号

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

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

## 2. 拼装用户名

最简形态——任意美国移动 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
```

## 3. 发送请求

### 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 秒。

## 4. 常见进阶

| 目标              | 在用户名上追加                                           |
| --------------- | ------------------------------------------------- |
| 绑定运营商           | `-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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
