[API] fast proxy agents are available to obtain private long

Interface Description

  • https://dps.kdlapi.com/api/getdpsvalidtime interface address
  • Private agents are available to obtain long

Back to Results

Here Insert Picture Description

Parameter Description

Here Insert Picture Description

Required parameters

  1. orderid order number
  2. proxy to query agents
  3. signature API Key

Gets the order number and API Key Tutorial

Sample Code

import requests


# API接口
api_url = "https://dps.kdlapi.com/api/getdpsvalidtime"

# 订单号跟API Key
orderid = 938452897319117
api_key = "8b0zeiofqrpq5ay594hu8vq7ojztmta6"

# 代理IP
proxy = "117.26.41.138:23745"

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

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

Operating results, when the length of the available proxy 226 seconds
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/105161720