https://httpip.pay66.cn/api.php?count=10
/admin.php)将你的账户设为 paid,或由支付平台通过 /webhook.php 回调自动开通,无需手动操作。开通后你的专属 KEY 立即解锁付费额度(次日 0 点按天重置每日配额)。
价格 88 元,付款 / 找回账号请联系站长 QQ 293814。
| 参数 | 类型 | 默认值 | 说明 | 示例 |
|---|---|---|---|---|
key | string | — | 专属 API KEY(必填,注册/登录后自动生成)。token 为兼容别名;值等于 legacy_token 视作付费全量。 | ?key=pp_xxxx |
count | int | 10 | 返回数量;上限 = api_max(100)。未带 KEY 仅返回 5 条。 | count=20 |
protocol | enum | — | 按协议筛选:http / https / socks4 / socks5 | protocol=http |
anonymity | enum | — | 匿名度:elite(高匿) / anonymous(匿名) / transparent(透明) | anonymity=elite |
gw | string | — | 仅返回指定网关可用代理,逗号多选:yy / tx / wy / cy;premium=1 等价全部厂商网关. | gw=yy,tx |
gw_mode | enum | all | 多网关组合逻辑:all(需同时满足) / any(满足任一) | gw_mode=any |
premium | int | 0 | 优质 IP:仅返回全部厂商网关均验证通过的代理 | premium=1 |
cn | enum | — | 按国内外筛选:cn(国内) / foreign(国外) | cn=cn |
country | string | — | 按国家/地区精确筛选 | country=美国 |
region | string | — | 按地区模糊匹配(省/市) | region=广东 |
keyword | string | — | 模糊搜索 IP / 地区 / 运营商 / 国家 | keyword=电信 |
min_speed / max_speed | int(ms) | — | 按响应速度(ms)范围筛选 | min_speed=200&max_speed=1000 |
min_score | int | — | 最小评分 | min_score=80 |
sort | enum | random | 排序:random / speed / score / last_check / gw(网关命中数) | sort=speed |
order | enum | desc | 排序方向:asc / desc(speed 默认 asc 快优先) | order=asc |
page / offset | int | — | 分页:page(从1起);offset(从0起,优先于 page) | page=2 |
format | enum | json | 返回格式:json / txt(ip:port) / txtp(协议://ip:port) / csv(带表头) | format=txt |
callback | string | — | JSONP 回调名(合法 JS 标识符),指定后返回 callback(...) | callback=cb |
?help 可获取 JSON 格式的接口文档;错误 KEY 返回 401,参数错误返回 400,配额耗尽返回 429。返回头含 Access-Control-Allow-Origin: *,支持跨域调用。JSON(默认):
{
"code": 0,
"msg": "ok",
"plan": "paid",
"total": 12345,
"count": 10,
"data": [
{
"ip": "1.2.3.4",
"port": 8080,
"protocol": "http",
"anonymity": "elite",
"anonymity_label": "高匿",
"speed": 120,
"score": 95,
"region": "广东",
"isp": "电信",
"country": "中国",
"source": "89ip",
"gw": { "yy": true, "tx": false, "wy": true, "cy": false }
}
]
}
TXT(format=txt):每行一条 ip:port
1.2.3.4:8080 5.6.7.8:1080
更多示例:
https://httpip.pay66.cn/api.php?count=10&protocol=http&anonymity=elite https://httpip.pay66.cn/api.php?gw=yy,tx&gw_mode=any&format=txt https://httpip.pay66.cn/api.php?premium=1&format=txt https://httpip.pay66.cn/api.php?country=美国&sort=speed&format=csv https://httpip.pay66.cn/api.php?min_speed=200&max_speed=1000&format=json