{
  "openapi": "3.0.1",
  "info": {
    "title": "Legacy Orchestrator",
    "description": "Self-healing scraper for legacy systems. Uses AI + computer vision to navigate ERPs, terminals, and portals without brittle selectors. Bring your own LLM via webhook—credentials never leave the sandbox. Web portals, SSH, mainframes. HIPAA/SOC2 ready.",
    "version": "1.0",
    "x-build-id": "T6aAF9Y4NeY38YcSm"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/ai_solutionist~legacy-orchestrator/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-ai_solutionist-legacy-orchestrator",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/ai_solutionist~legacy-orchestrator/runs": {
      "post": {
        "operationId": "runs-sync-ai_solutionist-legacy-orchestrator",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/ai_solutionist~legacy-orchestrator/run-sync": {
      "post": {
        "operationId": "run-sync-ai_solutionist-legacy-orchestrator",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "required": [
          "systemType",
          "connectionUrl",
          "task"
        ],
        "properties": {
          "systemType": {
            "title": "Target System Type",
            "enum": [
              "web_portal",
              "terminal_ssh",
              "terminal_telnet",
              "vnc"
            ],
            "type": "string",
            "description": "Select the type of legacy interface to automate.",
            "default": "web_portal"
          },
          "connectionUrl": {
            "title": "Connection URL / Hostname",
            "type": "string",
            "description": "For web portals: full URL (https://...). For terminals/VNC: hostname or IP address."
          },
          "connectionPort": {
            "title": "Port Number",
            "minimum": 1,
            "maximum": 65535,
            "type": "integer",
            "description": "SSH=22, Telnet=23, VNC=5900. Leave empty for web portals."
          },
          "task": {
            "title": "Task Description (Natural Language)",
            "type": "string",
            "description": "Describe what you want to accomplish in plain English. The AI will figure out how to navigate."
          },
          "planningWebhook": {
            "title": "n8n Planning Webhook URL",
            "type": "string",
            "description": "Your n8n webhook URL for LLM-based task planning. We include ready-to-import templates! If empty, uses built-in heuristics."
          },
          "planningWebhookSecret": {
            "title": "Webhook Secret (HMAC)",
            "type": "string",
            "description": "Optional: Add HMAC signing for secure webhook communication."
          },
          "outputSchema": {
            "title": "Expected Data Schema (JSON)",
            "type": "string",
            "description": "Define the structure of data you want to extract. Leave empty for AI-detected structure."
          },
          "maxSteps": {
            "title": "Maximum Navigation Steps",
            "minimum": 1,
            "maximum": 200,
            "type": "integer",
            "description": "Safety limit: Stop after this many steps even if task isn't complete. Typical tasks: 10-30 steps.",
            "default": 50
          },
          "timeout": {
            "title": "Timeout (seconds)",
            "minimum": 30,
            "maximum": 3600,
            "type": "integer",
            "description": "Maximum execution time. Web: 60-300s. Mainframes: 300-600s.",
            "default": 300
          },
          "stealthLevel": {
            "title": "Anti-Detection Level (1-3)",
            "minimum": 1,
            "maximum": 3,
            "type": "integer",
            "description": "1=Fast (basic), 2=Standard (hides webdriver), 3=Elite (full evasion with mouse movements). Use higher for Cloudflare/DataDome protected sites.",
            "default": 2
          },
          "enableVisionFallback": {
            "title": "Enable Self-Healing (Vision Fallback)",
            "type": "boolean",
            "description": "When CSS selectors fail, use computer vision + OCR to find elements visually. THIS IS THE MAGIC.",
            "default": true
          },
          "captureScreenshots": {
            "title": "Capture Debug Screenshots",
            "type": "boolean",
            "description": "Save screenshots at each step. Essential for debugging complex flows. Stored in Key-Value Store.",
            "default": false
          },
          "debugMode": {
            "title": "Debug Mode (Save Artifacts on Failure)",
            "type": "boolean",
            "description": "If the task fails, save the last screenshot, terminal buffer, and error details for diagnosis.",
            "default": true
          },
          "proxyConfiguration": {
            "title": "Proxy Configuration",
            "type": "object",
            "description": "For web portals only. Use Apify proxy or your own proxy URLs.",
            "default": {
              "useApifyProxy": true
            }
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}