skillfed

fetch-use

Python client for Browser-Use Fetch HTTP service

fetch-use v0.4.0 6.7M downloads/30d#1,864 on PyPI
Permissive license MIT Active released

What it is and what it does

fetch-use is a Python HTTP client that proxies requests through Browser-Use's infrastructure, adding Chrome TLS fingerprinting and optional session-based IP and cookie persistence. Instead of making direct HTTP calls, you authenticate with an API key and route requests through their managed proxy service, which handles the TLS handshake to mimic browser behavior and can maintain consistent IP addresses and cookies across multiple requests if you provide a session ID.

The package supports both sync and async patterns, custom headers and cookies, proxy country selection, configurable retry logic, and multiple output formats (raw, markdown, structured, simplified) for HTML responses. It's designed for scenarios where you need to make HTTP requests that appear to come from a real browser—such as scraping sites with anti-bot detection, maintaining login sessions, or feeding cleaned HTML to language models—without managing the fingerprinting and session state yourself.

Use it for:

  • Scrape websites that detect and block non-browser HTTP clients by routing through Browser-Use's TLS-fingerprinted proxy.
  • Maintain login sessions across multiple requests by reusing a session ID to preserve cookies and IP address.
  • Convert HTML pages to markdown or structured JSON for ingestion into language models while reducing token usage.
  • Test APIs or endpoints that require consistent IP addresses or browser-like request patterns.
  • Route requests through specific geographic proxies using the proxy_country parameter for geo-restricted content.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Routes HTTP requests through Browser-Use's proxy infrastructure with Chrome TLS fingerprinting, session-based IP persistence, and server-side cookie management.

Yes, if you need to make HTTP requests that bypass anti-bot detection or require session persistence. The zero-dependency install and active maintenance make it low-risk. Verify upfront whether the Browser-Use service's pricing and geographic coverage meet your use case, since the package itself is only a client—the actual proxy infrastructure is external and requires an API key.

Install

fetch-use on PyPI

pip

pip install fetch-use

uv

uv add fetch-use

poetry

poetry add fetch-use

Installing fetch-use

Before you install

Low install friction with no runtime dependencies. Actively maintained as of April 2026, in beta status.

License in practice

MIT license permits commercial and private use with minimal restrictions.

Quickstart

import os
from fetch_use import fetch_sync

os.environ["BROWSER_USE_API_KEY"] = "bu_your-api-key"
response = fetch_sync("https://example.com")
print(response.status_code)

Requires a Browser-Use API key (starts with bu_) to authenticate requests to the proxy service.

Verify before relying

  • Whether the service incurs per-request costs or subscription fees beyond API key provisioning.
  • Geographic coverage and availability of proxy endpoints beyond the documented proxy_country parameter.
  • Latency and throughput characteristics compared to direct HTTP clients.

Package facts

License MIT (permissive)
Python support supports the current Python release (>=3.9)
Install friction low — pure-Python wheel
Runtime dependencies none
Maintenance actively maintained — 127 days since the last release
First released
Downloads 6,717,596/month — #1,864 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: fetch_use-0.4.0-py3-none-any.whl

Keywords: api, fetch, http, proxy, requests

Development Status :: 4 - BetaIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseOperating System :: OS IndependentProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.9Topic :: Internet :: WWW/HTTPTopic :: Software Development :: Libraries :: Python Modules

Tags

http client with proxy fingerprintingbrowser-use fetch servicesession-based ip persistencetls fingerprinting httpmanaged cookie persistenceanti-detection http requests
proxy-clientanti-detectionsession-management

More Python Modules packages