Skip to content

获取设备列表

通过该接口,可获取所有设备列表。

https://agri-dl.holdingbyte.com/api/device/

请求方法

GET

请求参数

返回数据

字段类型说明
agri_idstring内部id
device_idstring设备id
the_typeint设备类型,详情
infostring设备信息

数据示例:

json
[
    {
        "agri_id": "d-1004-sstbihepfpzi",
        "device_id": "E48027663",
        "the_type": 2030,
        "info": "第一台样机摄像头"
    },
    {
        "agri_id": "d-1001-sxgskthsbqpl",
        "device_id": "7528-4FFC-89BF",
        "the_type": 2110,
        "info": "第一台样机"
    }
]

示例代码

python

import requests

# 请求token
token = "hvduasqoqnbtscaiumzsgpjewxkrgupq"

url = "https://agri-dl.holdingbyte.com/api/device/"

payload = {}
headers = {
  'token': token,
  'Content-Type': 'application/json'
}

response = requests.request("GET", url, headers=headers, data=payload)

print(response.text)