> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zeus.agentspro.cn/llms.txt
> Use this file to discover all available pages before exploring further.

# List Scheduled Jobs

> Get all scheduled jobs (for debugging)

<Note>This is an **internal debugging API** that requires `X-Internal-Secret` authentication.</Note>

<ParamField header="X-Internal-Secret" type="string" required>
  Internal API secret
</ParamField>

<ResponseField name="jobs" type="array">
  List of scheduled jobs
</ResponseField>

<ResponseField name="total" type="number">
  Total number of jobs
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url https://zeus-api.agentspro.cn/scheduled-task/jobs \
    --header 'X-Internal-Secret: your-secret'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "jobs": [
      {
        "id": "task_123",
        "name": "Daily Email Digest",
        "next_run_time": "2025-06-16T09:00:00+08:00"
      }
    ],
    "total": 1
  }
  ```
</ResponseExample>
