WEB AUTOMATION
Headless browser automation with built-in bot detection bypass. Give Browse a URL and a task, and it handles the rest: navigating pages, filling forms, solving CAPTCHAs, extracting data. Government portals, legacy apps, anything with a login screen.
WHAT BROWSE CAN DO
Advanced fingerprinting, human-like mouse movements, and browser signatures that pass detection systems automatically.
Built-in solver for reCAPTCHA, hCaptcha, and image challenges. No third-party services. Just works.
Pull structured data from any page. Tables, forms, text, images. Returns clean JSON you can use immediately.
Persistent cookies, authenticated sessions, and proxy rotation. Browse handles the complexity of staying logged in.
Run thousands of browser jobs in parallel. Queue management, retry logic, and rate limiting built in.
Screenshots and recordings of every session. See exactly what the browser saw. Debug without guessing.
HOW IT WORKS
YAML or Python. Describe the steps: navigate, fill, click, extract.
One API call. We handle the browser, proxies, and detection.
Structured JSON with extracted data, screenshots, and logs.
Run thousands of jobs in parallel with built-in queue management.
name: form-fillerdriver: stealth-chromesteps:- navigate: "{{ portal_url }}"- fill:selector: "#company-name"value: "{{ company_name }}"- solve_captcha: true- click: "#submit-btn"
from masonry import browseresult = browse.run(bot="form-filler",data={"portal_url": "https://portal.gov","company_name": "Acme Inc"})print(result.extracted)
WORKS WITH