List operator versions

Returns the full version history of the named operator, newest first. Each version is an immutable snapshot of the operator's prompt and output configuration at the time it was saved; the current version has is_current: true.

Required scope: intelligence:read

Path Parameters
  • name
    Type: string · Name
    required

    The operator's name (kebab-case).

Responses
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/operators/{name}/versions
curl 'https://api.simwood.com/intelligence/v1/operators/{name}/versions' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
[
  {
    "name": "string",
    "description": "string",
    "prompt": "string",
    "output_type": "classification",
    "output_config": {
      "additionalProperty": "anything"
    },
    "model_tier": "fast",
    "include_reasoning": true,
    "parameters": [
      {
        "name": "string",
        "type": "kb_document",
        "description": "string"
      }
    ],
    "account": "string",
    "version": 1,
    "is_current": true,
    "created_at": "string",
    "updated_at": "string"
  }
]