[API] Acting quickly query the current IP tunnel broker

Interface Description

  • https://tps.kdlapi.com/api/tpscurrentip interface address
  • Real-time query the current IP tunnel broker
  • Only support for IP periods> = 1 minute tunnel broker orders
  • Note To actually use to query the current IP

Back to Results

Returns the current IP tunnel
Here Insert Picture Description

Parameter Description

Here Insert Picture Description

Required parameters

  1. orderid order number
  2. signature API Key

Gets the order number and API Key Tutorial

Sample Code

import requests

# 使用隧道代理
# 隧道服务器
tunnel_host = "tps176.kdlapi.com"
tunnel_port = 15818

# 隧道id和密码
tid = "t18538132507140"
password = "4zdldwy7"

proxies = {
    "http": "http://%s:%s@%s:%s/" % (tid, password, tunnel_host, tunnel_port),
    "https": "http://%s:%s@%s:%s/" % (tid, password, tunnel_host, tunnel_port)
}

r = requests.get("https://dev.kdlapi.com/testproxy", proxies=proxies)

# API接口
api_url = "https://tps.kdlapi.com/api/tpscurrentip"

# 订单号跟API Key
orderid = 918538132507097
api_key = "azx0jv2f1r9ytsmzuxskvrf9rp01vcea"

# 参数
params = {
        "orderid": orderid,
        "signature": api_key,
        }

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

Operating results, return to the current proxy
Here Insert Picture Description

Advanced Learning

Published 35 original articles · won praise 22 · views 40000 +

Guess you like

Origin blog.csdn.net/kdl_csdn/article/details/105162306