$ man browser-flow-digest
/browser-flow-digest
PRICE / CALL
$0.02
USDC · base mainnet · scheme: exact
METHOD
POST
CLUSTER
browserworkflowCATEGORY
uncategorized
STATUS
● live
NAME
browser-flow-digest — browser flow digest api that compresses a recorded trajectory or trace into reusable workflow memory: an ordered step list, the precondit…
SYNOPSIS
POST https://x402.agentutility.ai/browser-flow-digest
Content-Type: application/json
X-PAYMENT: <signed-transferWithAuthorization>
{ ... }↳ first call →
402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.DESCRIPTION
Browser flow digest API that compresses a recorded trajectory or trace into reusable workflow memory: an ordered step list, the preconditions each step assumes, and failure hints for anything that broke or looked fragile. Built for trajectory-to-steps compression so an agent doesn't replay a full session log every time it repeats a task. Send a trajectory (JSON array of recorded browser actions, or a plain-text trace) and an optional goal, and get back a named workflow with steps, preconditions, failure hints, and reusability notes grounded only in what the trajectory actually shows. Use it as a workflow memory API, a browser automation trace summarizer, or a reusable-recipe generator for repeat browser agent tasks.
INPUT — request schema
| property | type | description | req? |
|---|---|---|---|
| trajectory | array | string | The recorded browser trajectory: a JSON array of step/action objects (navigate, click, fill, wait, assert, etc.), or a plain-text trace. Required. Serialized form capped at 60,000 chars. | required |
| goal | string | Optional plain-language description of what the trajectory was trying to accomplish. Max 300 chars. | optional |
OUTPUT — response shape
| field | type | description |
|---|---|---|
| digest | string | — |
| model | string | — |
| source | string | — |
EXAMPLES — two ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.agentutility.ai/browser-flow-digest \
-H 'Content-Type: application/json' \
-d '{ }'first response =
402 Payment Required with payment requirements; sign + retry with X-PAYMENT.EXAMPLE 2 · mcp
# Install the MCP package for this endpoint's cluster npx -y @agentutility/mcp-<cluster> # Required: EVM private key with USDC on Base export X402_PRIVATE_KEY=0x... # Then call the browser-flow-digest tool from your MCP-aware agent.
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
- tags
- browser-workflowbrowserflowdigestbrowser-flow-digest
- methods
- POST
- cluster
- browserworkflow
- price
- $0.02 USDC per call
ADJACENT — other endpoints in browserworkflow
| endpoint | description | price |
|---|---|---|
| form-fill-plan | Form fill plan API that turns an HTML form plus a plain-language goal into an ordered browser form automation plan: selector, field label… | $0.02 |
| dom-change-diff | DOM diff for two HTML snapshots of the same page or component, built for browser-automation scripts whose CSS selectors quietly break aft… | $0.01 |
SEE ALSO