Skip to main content
GET
/
v3
/
agents
/
{agent_key}
/
schedules
List schedules
curl --request GET \
  --url https://api.orq.ai/v3/agents/{agent_key}/schedules \
  --header 'Authorization: Bearer <token>'
{
  "schedules": [
    {
      "_id": "<string>",
      "agent_key": "<string>",
      "created": "2023-11-07T05:31:56Z",
      "created_by_id": "<string>",
      "expression": "<string>",
      "generation": 123,
      "is_active": true,
      "payload": {
        "input": "<unknown>",
        "memory_entity_id": "<string>",
        "metadata": {},
        "variables": {}
      },
      "trigger_count": 123,
      "updated": "2023-11-07T05:31:56Z",
      "agent_tag": "<string>",
      "last_triggered_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.orq.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

agent_key
string
required

The unique routing key of the agent the schedule belongs to.

Response

200 - application/json

Schedules listed (empty array if none).

schedules
object[] | null
required