GET
/
procedural_agents
/
{id}
/
versions
List versions of a procedural agent
curl --request GET \
  --url https://api.operator.xyz/procedural_agents/{id}/versions \
  --header 'Authorization: Bearer <token>' \
  --header 'Operator-Version: <operator-version>'
{
  "data": [
    {
      "version_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "name": "<string>",
      "description": "<string>",
      "version_status": "released"
    }
  ]
}

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

id
string
required

Unique identifier for the procedural agent, e.g. pa_8qm9JBCiTe7

Response

Successful response.

data
get.procedural.agent.version · object[]
required

List of versions for this procedural agent.