[API] to obtain orders fast proxy IP extract balance

Interface Description

  • https://dps.kdlapi.com/api/getdpsvalidtime interface address
  • ORDERS IP extract balance
  • This interface is valid only for centralized extraction type orders and orders to pay according to the amount of monthly subscription packages
  • For paid according to the amount of orders, it returns this interface IP remaining amount extracted Order
  • For concentrated extract-type package in monthly orders, returns this interface is today the remaining amount extracted IP

Back to Results

balance balance
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


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

# 订单号跟API Key
orderid = 948538010667581
api_key = "ll1jibev8bohcplm1p20jy8ksx4my2od"

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

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

Operating results, this order today left 990 IP
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/105161931