Open a real browser session, navigate to the pricing page, pull structured pricing data, then close the session cleanly.
Open a headless browser session.
browse_open({"url": "https://example.com", "mode": "honest", "sign": true})Navigate to the competitor's pricing URL.
browse_navigate({"browser_id": "example-id", "url": "https://example.com"})Pull structured fields (prices, plan names) off the loaded page.
browse_extract({"browser_id": "example-id", "fields": {}})Close the browser session once extraction is done.
browse_close({"browser_id": "example-id"})