Fetches the given URL via proxy and returns the response.
Modes:
html: Raw HTML contentmarkdown: Clean readable content (Reader Mode)json: Structured dataBrowser Rendering:
Use waitForSelector or actions to force browser rendering.
waitForSelector runs first, then actions.Actions (Browser Automation): Execute browser interactions before capturing content:
wait: Wait for specified milliseconds { type: "wait", milliseconds: 2000 }click: Click an element { type: "click", selector: "#btn" }type: Type text into an input { type: "type", selector: "#input", text: "hello" }press: Press a keyboard key { type: "press", key: "Enter" }scroll: Scroll up or down { type: "scroll", direction: "down" }evaluate: Execute JavaScript { type: "evaluate", script: "document.title" }Limits:
Features:
Costs 1 credit.