资源加载中... loading...

GetRobotList



```JSON
{
    "code": 0,
    "data": {
        "result": {
            "all": 1,
            "concurrent": 0,
            "robots": [{
                "charge_time": 1731654846,
                "date": "2024-11-12 14:05:29",
                "end_time": "2024-11-15 14:56:32",
                "fixed_id": 4509153,
                "id": 591026,
                "is_sandbox": 0,
                "name": "测试",
                "node_guid": "45891bcf3d57f99b08a43dff76ee1ea1",
                "node_id": 4519153,
                "node_public": 0,
                "profit": 0,
                "public": 0,
                "refresh": 1731651257000,
                "start_time": "2024-11-15 14:56:30",
                "status": 3,
                "strategy_id": 411670,
                "strategy_isowner": true,
                "strategy_language": 0,
                "strategy_name": "测试",
                "strategy_public": 0,
                "uid": "105ed6e511cc977921610fdbb7e2a1d6",
                "wd": 0
            }]
        },
        "error": null
    }
}
  • robots: 实盘信息
    • group_id: 实盘分组Id;如果策略实盘在默认分组中则没有group_id字段。

分页查询偏移设置。 offset false number 分页查询长度设置。 length false number 指定所要查询的实盘状态,参考扩展API接口「实盘状态码」,传-1代表获取全部实盘。 robotStatus false number 指定所要查询的实盘自定义标签,可以筛选出这个标签的所有实盘。 label false string 查询关键字。 keyWord false string

Python语言的扩展API接口「验证方式」为例: print(api('GetRobotList')):获取全部实盘信息。 print(api('GetRobotList', 'member2')):把自定义标签为member2的实盘信息全部打印出来。 print(api('GetRobotList', 0, 5, -1, 'member2')):分页从0到5列出来最多5个标签为member2的实盘。

GetPlatformList CommandRobot