Most production users drive Sequentum through the REST API or MCP, but the Control Center web UI atDocumentation Index
Fetch the complete documentation index at: https://docs.sequentum.com/llms.txt
Use this file to discover all available pages before exploring further.
dashboard.sequentum.com is also a first-class operating surface — handy for debugging a misbehaving agent, triggering a one-off run, or scanning recent failures without writing code.
Find your runs
Every Run an agent fires lands in Run history, filterable by agent, status, and date. Statuses follow the Run lifecycle —Success and Completed are green-banded, Failure (which is restartable in place) is amber, Failed (which is history-only) is red.
Trigger a run
From any agent’s details screen, click Run to kick off a new Run. A side panel collects the same parameters thePOST /agent/{agentId}/start endpoint accepts — input parameters, parallelism, proxy pool, log level. Click Start and the new Run appears in the active runs table within a few seconds.
Stop or kill a Run
Click any active Run to open its detail view.- Stop maps to
POST /agent/{agentId}/run/{runId}/stop— graceful shutdown that persists what’s already been extracted. - Kill maps to
POST /agent/{agentId}/run/{runId}/kill— forceful termination that may discard in-flight work.
Inspect outputs
The Run detail view has three tabs:- Records — the extracted data, paginated and filterable. Click any record to see the full JSON.
- Files — raw HTML, screenshots, exported files, log files. Each downloadable.
- Diagnostics — per-command timing, failure traces, blocked-page detection.
GET /run/{runId}/files and GET /run/{runId}/file/{fileId}/download.