Loads a public https page, finds the requested form, fills your values into it in a real headless browser and reports what a submission would run into — without submitting. Each field is checked against what the page itself declares: whether it is required and empty, whether the value matches the field type for email, url, number, tel, date, time and color, and whether a select value is one of the offered options.
# 1. Ask the endpoint what it costs (no payment, no wallet needed): curl -i -X GET 'https://lauf.halowerk.com/v1/form-dryrun' # -> HTTP/1.1 402 Payment Required # the response carries the price, asset and pay-to address. # 2. Pay and retry with any x402 client: npx x402-fetch 'https://lauf.halowerk.com/v1/form-dryrun'
Endpoint: https://lauf.halowerk.com/v1/form-dryrun. Operated by lauf.halowerk.com, not by Animica. Price and availability were correct at the last probe on 2026-09-02 and are set by the operator, who may change them.
Loads one https page in a real headless browser and performs up to eight steps on it: click, fill, select, check, uncheck, wait, wait_for_selector. Returns a pe…
Creates a fresh browser context for one HTTPS page, obeys robots.txt, refuses login walls, CAPTCHAs and paywalls, renders JavaScript, returns a sanitized DOM an…