touhoubot_api
  1. 检测器配置
touhoubot_api
  • 游戏配置
    • 游戏列表
      GET
    • 设置游戏配置
      PUT
    • 游戏配置选项
      GET
    • 获取当前配置
      GET
  • 检测器配置
    • 获取检测器列表
      GET
    • 获取检测器参数
      GET
    • 设置检测器参数
      PUT
  • 调试工具
    • 获取工具列表
      GET
    • 获取工具参数
      GET
    • 设置工具参数
      PUT
    • 执行工具
      POST
    • 中止工具
      POST
    • 工具状态
      GET
    • 运行工具列表
      GET
  • 智能体
    • AI任务状态
      GET
    • 开始训练会话
      POST
    • 开始推理会话
      POST
    • 停止任务
      POST
    • 保存模型
      POST
    • 可用模型列表
      GET
    • AI配置
      GET
    • 环境配置
      PUT
    • 智能体配置
      PUT
  1. 检测器配置

获取检测器参数

开发中
GET
/api/detectors/{name}
获取某个检测器的参数值

请求参数

Path 参数

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/detectors/'

返回响应

🟢200成功
application/json
Body

示例
{
    "comment": "string",
    "detector": {
        "title": [
            {
                "locale": "string",
                "text": "string"
            }
        ],
        "name": "string",
        "description": [
            {
                "locale": "string",
                "text": "string"
            }
        ],
        "params": [
            {
                "title": [
                    {
                        "locale": "string",
                        "text": "string"
                    }
                ],
                "name": "string",
                "description": [
                    {
                        "locale": "string",
                        "text": "string"
                    }
                ],
                "type": "string",
                "value": "string"
            }
        ]
    }
}
修改于 2025-06-14 16:01:53
上一页
获取检测器列表
下一页
设置检测器参数
Built with