Scout is in active development. Public launch: 1 December 2026. Until then, explore the live sandboxes and docs — public signup and API keys are not open yet.
Use Case

AI Agents + Scout

Statt jedem Agent direkten Browser-Zugriff zu geben, ruft der Agent Scout als verlässliche Prüfungsschicht auf und bekommt strukturierte Ergebnisse zurück.

Warum das hilft

  • Einheitliche Antwortformate statt Tool-Mix pro Agent
  • Klare Trennung: Agent-Entscheidung vs. Browser-Evidence
  • Ein Key- & Credit-Modell für viele Agent-Workflows

Beispiel-Pattern

typescript
// agent asks for factual page check
const result = await scout.assert({
  url: "https://example.com/pricing",
  assert: [{ selector: "#buy", visible: true }]
})

if (!result.passed) {
  // escalate to human or retry flow
}