fetch-use
Python client for Browser-Use Fetch HTTP service
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-useuv
uv add fetch-usepoetry
poetry add fetch-useInstalling 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
Tags
More Python Modules packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
PyYAMLPyYAML parses and emits YAML 1.1 data format,…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
annotated-typesProvides reusable metadata objects for use with…
permissive · top 100 on PyPI
typing-inspectionProvides runtime tools to inspect and…
permissive · top 100 on PyPI
wrapper-tls-requestsMakes HTTP requests with browser-like TLS…
permissive · top 15,000 on PyPI
wafer-pyAn anti-detection HTTP client that handles TLS…
permissive · top 15,000 on PyPI
browser-cookie3Extracts cookies from your browser's local…
copyleft · top 5,000 on PyPI
cookiesParses and renders HTTP Cookie and Set-Cookie…
permissive · top 15,000 on PyPI
rnetAn HTTP client library with browser…
copyleft · top 15,000 on PyPI
curl-cfficurl_cffi provides Python bindings to libcurl…
permissive · top 1,000 on PyPI
pycookiecheatExtracts and decrypts cookies from Chrome,…
permissive · top 15,000 on PyPI
requestsRequests is a Python HTTP library that…
permissive · top 100 on PyPI
wreqAn HTTP client library for Python with…
permissive · top 15,000 on PyPI
browser-use-sdkPython SDK for controlling browsers…
permissive · top 5,000 on PyPI