apipick-china-phone
使用 apipick China Phone Checker API 验证中国手机号码。返回运营商(中国移动/电信/联通)、省份、城市、邮政编码和区号。当用户想要验证中国电话号码、查找中国手机号码的运营商信息或获取与中国电话号码关联的地理信息时使用。需要 apipick API 密钥 (x-api-key)。在 https://www.apipick.com 获取免费密钥。
安装 / 下载方式
TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~javainthinking-apipick-china-phone-checkercURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~javainthinking-apipick-china-phone-checker/file -o javainthinking-apipick-china-phone-checker.md## 概述(中文)
使用 apipick China Phone Checker API 验证中国手机号码。返回运营商(中国移动/电信/联通)、省份、城市、邮政编码和区号。当用户想要验证中国电话号码、查找中国手机号码的运营商信息或获取与中国电话号码关联的地理信息时使用。需要 apipick API 密钥 (x-api-key)。在 https://www.apipick.com 获取免费密钥。
## 原文
# apipick China Phone Checker
Validate Chinese mobile numbers and retrieve carrier and geographic data.
## Endpoint
```
POST https://www.apipick.com/api/check-china-phone
```
**Authentication:** `x-api-key: YOUR_API_KEY` header required.
Get a free API key at https://www.apipick.com/dashboard/api-keys
## Request
```json
{"phone_number": "13800138000"}
```
Supported formats: `13800138000` / `+8613800138000` / `008613800138000`
## Response
```json
{
"success": true,
"data": {
"phone": "13800138000",
"phone_type": "China Mobile",
"province": "Beijing",
"city": "Beijing",
"zip_code": "100000",
"area_code": "010"
}
}
```
`phone_type` values: `China Mobile`, `China Telecom`, `China Unicom`
## Error Codes
| Code | Meaning |
|------|---------|
| 400 | Invalid phone number format |
| 401 | Missing or invalid API key |
| 402 | Insufficient credits |
| 500 | Server error |
**Cost:** 1 credit per request
## Usage Pattern
1. Use `$APIPICK_API_KEY` env var as the `x-api-key` header value; if not set, ask the user for their apipick API key
2. Make the POST request with the phone number
3. Present carrier and geographic results clearly
See [references/api_reference.md](references/api_reference.md) for full response field descriptions.