跳转到主要内容
GET
/
scheduled-task
/
jobs
curl --request GET \
  --url https://zeus-api.agentspro.cn/scheduled-task/jobs \
  --header 'X-Internal-Secret: your-secret'
{
  "jobs": [
    {
      "id": "task_123",
      "name": "每日邮件摘要",
      "next_run_time": "2025-06-16T09:00:00+08:00"
    }
  ],
  "total": 1
}
这是内部调试 API,需要 X-Internal-Secret 认证。
X-Internal-Secret
string
必填
内部 API 密钥
jobs
array
调度任务列表
total
number
任务总数
curl --request GET \
  --url https://zeus-api.agentspro.cn/scheduled-task/jobs \
  --header 'X-Internal-Secret: your-secret'
{
  "jobs": [
    {
      "id": "task_123",
      "name": "每日邮件摘要",
      "next_run_time": "2025-06-16T09:00:00+08:00"
    }
  ],
  "total": 1
}