Orq MCP is live: Use natural language to interrogate traces, spot regressions, and experiment your way to optimal AI configurations. Available in Claude Desktop, Claude Code, Cursor, and more. Start now →
Retrieves a single schedule by ID.
curl https://api.orq.ai/v3/agents/customer_digest/schedules/01KPN29WWKSK0VDPJNTKZPVNRB \
-H "Authorization: Bearer $ORQ_API_KEY"
{
"_id": "01KPN29WWKSK0VDPJNTKZPVNRB",
"workspace_id": "cd185327-a8a5-4e55-ac9e-51c8e8b7f0e5",
"agent_key": "customer_digest",
"agent_tag": "v2",
"type": "cron",
"expression": "0 0 9 * * mon-fri",
"is_active": true,
"generation": 2,
"payload": {
"input": "Generate the morning briefing for {{region}}",
"variables": { "region": "EMEA" },
"metadata": { "run_source": "daily-briefing" }
},
"created_by_id": "apk_01KPM5XHYF7NXZ1S3XK2J8Q4B7",
"created": "2026-04-15T12:00:00Z",
"updated": "2026-04-20T09:30:00Z",
"last_triggered_at": "2026-04-20T09:00:02Z",
"trigger_count": 12
}
Returns the full schedule document, includingDocumentation Index
Fetch the complete documentation index at: https://docs.orq.ai/llms.txt
Use this file to discover all available pages before exploring further.
trigger_count, last_triggered_at, and the current generation counter. Useful for checking state after creation or verifying a schedule fired as expected.
See Agent Schedules for field semantics.
curl https://api.orq.ai/v3/agents/customer_digest/schedules/01KPN29WWKSK0VDPJNTKZPVNRB \
-H "Authorization: Bearer $ORQ_API_KEY"
{
"_id": "01KPN29WWKSK0VDPJNTKZPVNRB",
"workspace_id": "cd185327-a8a5-4e55-ac9e-51c8e8b7f0e5",
"agent_key": "customer_digest",
"agent_tag": "v2",
"type": "cron",
"expression": "0 0 9 * * mon-fri",
"is_active": true,
"generation": 2,
"payload": {
"input": "Generate the morning briefing for {{region}}",
"variables": { "region": "EMEA" },
"metadata": { "run_source": "daily-briefing" }
},
"created_by_id": "apk_01KPM5XHYF7NXZ1S3XK2J8Q4B7",
"created": "2026-04-15T12:00:00Z",
"updated": "2026-04-20T09:30:00Z",
"last_triggered_at": "2026-04-20T09:00:02Z",
"trigger_count": 12
}
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The unique routing key of the agent the schedule belongs to.
The schedule's ULID, as returned from create.
Schedule retrieved.
ULID identifying this schedule.
ID of the API key that created the schedule.
Cron expression (6-field, seconds required), @every duration, @at RFC3339 timestamp, or a predefined descriptor like @hourly/@daily.
Monotonic counter bumped when the schedule's firing cadence changes. Used by the consumer to skip stale in-flight triggers.
Whether the schedule is currently firing. once schedules flip to false automatically after firing.
Show child attributes
Total firings since creation or last expression/type change.
Schedule type.
cron, once, interval Pinned agent version. Omit to always run the agent's current active version.
Timestamp of the most recent firing, if any.
Was this page helpful?
curl https://api.orq.ai/v3/agents/customer_digest/schedules/01KPN29WWKSK0VDPJNTKZPVNRB \
-H "Authorization: Bearer $ORQ_API_KEY"
{
"_id": "01KPN29WWKSK0VDPJNTKZPVNRB",
"workspace_id": "cd185327-a8a5-4e55-ac9e-51c8e8b7f0e5",
"agent_key": "customer_digest",
"agent_tag": "v2",
"type": "cron",
"expression": "0 0 9 * * mon-fri",
"is_active": true,
"generation": 2,
"payload": {
"input": "Generate the morning briefing for {{region}}",
"variables": { "region": "EMEA" },
"metadata": { "run_source": "daily-briefing" }
},
"created_by_id": "apk_01KPM5XHYF7NXZ1S3XK2J8Q4B7",
"created": "2026-04-15T12:00:00Z",
"updated": "2026-04-20T09:30:00Z",
"last_triggered_at": "2026-04-20T09:00:02Z",
"trigger_count": 12
}