API documentation

Please note that please read the API description carefully – you are solely responsible for what you add to our API

HTTP method POST
Response format Json
API URL https://zh.kls1314.com/api/v1
API Key

Place a new order

Parameter description
key Your API key
action add
service Service ID
link Link to page
quantity Needed quantity (份数)

Sample response:

{
  "status": "success",
  "order": 32
}
            

State order

Parameter description
key Your API key
action status
order Order ID

Sample response:

{
  "order": "32",
  "status": "pending",
  "charge": "0.0360",
  "start_count": "0",
  "remains": "0",
  "currency": "USD"
}
            

Multiple order statuses

Parameter description
key Your API key
action status
orders Order IDs separated by comma (array data)

Sample response:

  {
      "12": {
          "order": "12",
          "status": "processing",
          "charge": "1.2600",
          "start_count": "0",
          "remains": "0",
          "currency": "USD"
      },
      "2": "Incorrect order ID",
      "13": {
          "order": "13",
          "status": "pending",
          "charge": "0.6300",
          "start_count": "0",
          "remains": "0",
          "currency": "USD"
      }
  }
            

Services Lists

Parameter description
key Your API key
action services

Sample response:

[
  {
      "service": "17748",
      "name": "Discord 账号 已验证手机号邮箱(养号 1 个月)",
      "category": "Discord - 账号",
      "rate": "3.92",
      "min": "1",
      "max": "999999",
      "type": "package",
      "desc": "usernames",
      "dripfeed": 0
  },
  {
      "service": "17749",
      "name": "Discord 账号 已验证手机号邮箱(养号 2 个月)",
      "category": "Discord - 账号",
      "rate": "5.66",
      "min": "1",
      "max": "999999",
      "type": "package",
      "desc": "usernames",
      "dripfeed": 0
  }
]
            

Update balance

Parameter description
key Your API key
action balance

Sample response:

  {
      "status": "success",
      "balance": "0.03",
      "currency": "USD"
  }