GET
/
procedural_agents
/
{agent_id}
/
procedures
List procedures for a procedural agent
curl --request GET \
  --url https://api.operator.xyz/procedural_agents/{agent_id}/procedures \
  --header 'Authorization: Bearer <token>' \
  --header 'Operator-Version: <operator-version>'
{
  "page": [
    {
      "id": "<string>",
      "name": "<string>",
      "conversation_id": "<string>",
      "agent_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "status": "pending",
      "output": null,
      "error": null
    }
  ],
  "cursor": null
}

Authorizations

Authorization
string
header
required

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

Headers

Operator-Version
enum<string>
required

The API version to use.

Available options:
2025-06-19

Path Parameters

agent_id
string
required

The ID of the procedural agent to list procedures for, e.g. pa_8qm9JBCiTe7

Query Parameters

cursor
string

Pagination cursor for retrieving the next page of results. Use the cursor value returned in the previous response to fetch subsequent pages.

Response

Successful response.

page
listed.procedure · object[]
required

List of procedures

cursor
string

Cursor for next page, if available