【快代理API】获取隧道代理IP

接口描述

  • http://tps.kdlapi.com/api/gettps 接口地址
  • 获取订单对应的隧道代理IP

返回结果

代理IP
在这里插入图片描述

参数说明

在这里插入图片描述

必填参数

  1. orderid 订单号
  2. num 数量

代码样例

import requests

# API接口
api_url = "http://tps.kdlapi.com/api/gettps"

# 订单号跟API Key
orderid = 918538132507097
num = 1

# 参数
params = {
        "orderid": orderid,
        "num": num,
        }

res = requests.get(api_url, params=params)
print(res.content)

返回结果,隧道代理
在这里插入图片描述

进阶学习

发布了35 篇原创文章 · 获赞 22 · 访问量 4万+

猜你喜欢

转载自blog.csdn.net/kdl_csdn/article/details/105162761