Skip to content
clusters: prooflayer · edgemarket · edgefinance · synthforge · mediakit · wordmint · webprobe · locale · comppoint · rollforge · bestiary · statline · matchpoint · retail · agentops · browserworkflow · modelrouter · compose
$ man form-fill-plan

/form-fill-plan

agentutility / browser-workflow / form-fill-plan
PRICE / CALL
$0.02
USDC · base mainnet · scheme: exact
METHOD
POST
CATEGORY
uncategorized
STATUS
live
NAME
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…
SYNOPSIS
POST https://x402.agentutility.ai/form-fill-plan
     Content-Type: application/json
     X-PAYMENT:    <signed-transferWithAuthorization>

     { ... }
↳ first call → 402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.
DESCRIPTION

Form fill plan API that turns an HTML form plus a plain-language goal into an ordered browser form automation plan: selector, field label, value, and action (fill/select/check/uncheck/click) for each step. Built for autofill steps and Playwright form plan generation ahead of a real run. Send form_html, a goal like 'sign up for the newsletter with my email', and any known data values, and get back a step-by-step plan with unresolved fields flagged rather than guessed. Advisory only: the plan is heuristic guidance from static HTML, not a guarantee, and should be verified against the live DOM before executing. Use it as a browser form automation API, an autofill planning tool, or a pre-run checklist generator for RPA and agent browser workflows.

INPUTrequest schema
propertytypedescriptionreq?
form_htmlstringThe HTML of the form to plan a fill for, including its input/select/textarea elements. Required, max 200,000 chars.required
goalstringPlain-language description of what the fill should accomplish, e.g. 'sign up for the newsletter with my email'. Required, max 500 chars.required
dataobjectOptional known field values keyed by a human-readable name (e.g. { email: 'a@b.com' }) the planner should use to resolve steps.optional
OUTPUTresponse shape
fieldtypedescription
goalstring
stepsstring
unresolved_fieldsstring
advisorystring
advisory_notestring
modelstring
sourcestring
EXAMPLEStwo ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.agentutility.ai/form-fill-plan \
  -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 form-fill-plan tool from your MCP-aware agent.
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
tags
browser-workflowformfillplanform-fill-plan
methods
POST
cluster
browserworkflow
price
$0.02 USDC per call
ADJACENTother endpoints in browserworkflow
endpointdescriptionprice
browser-flow-digestBrowser flow digest API that compresses a recorded trajectory or trace into reusable workflow memory: an ordered step list, the precondit…$0.02
dom-change-diffDOM 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
agentutility · browserworkflow · x402 · mcp · llms.txt · registry.json · bazaar.x402.org