Skip to main content
Use browser_curl when an agent needs an HTTP request to behave like it came from an existing browser session. The request goes through the browser’s Chrome network stack, so it can use the session’s cookies, proxy, network context, and origin behavior. This is useful after a browser has logged in to a site and the agent needs a JSON endpoint, a redirect target, or a binary asset without writing Playwright code for the request.
For documentation lookup or general web search, use search_docs or your agent’s normal search tool instead.
  1. Use manage_browsers or manage_browser_pools to get a browser with the right cookies, proxy, and profile.
  2. Call browser_curl with the returned session_id.
  3. Use response_encoding: "base64" when the response might be binary.
  4. Use execute_playwright_code instead when you need page JavaScript, DOM state, or user-visible navigation.

Parameters

Read an authenticated endpoint

Post with browser cookies