Skip to main content
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": "Daily Email Digest",
      "next_run_time": "2025-06-16T09:00:00+08:00"
    }
  ],
  "total": 1
}
This is an internal debugging API that requires X-Internal-Secret authentication.
X-Internal-Secret
string
required
Internal API secret
jobs
array
List of scheduled jobs
total
number
Total number of jobs
curl --request GET \
  --url https://zeus-api.agentspro.cn/scheduled-task/jobs \
  --header 'X-Internal-Secret: your-secret'
{
  "jobs": [
    {
      "id": "task_123",
      "name": "Daily Email Digest",
      "next_run_time": "2025-06-16T09:00:00+08:00"
    }
  ],
  "total": 1
}