--- id: fetch-use version: "0.4.0" license: MIT license_treatment: permissive maintenance: active --- # fetch-use — Python client for Browser-Use Fetch HTTP service License: permissive · Maintenance: active · Downloads: 6.7M/mo ## 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 above — 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 pip install fetch-use uv add fetch-use 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_current - Install friction: low - Maintenance: active - Downloads: 6.7M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags http client with proxy fingerprinting, browser-use fetch service, session-based ip persistence, tls fingerprinting http, managed cookie persistence, anti-detection http requests, proxy-client, anti-detection, session-management [View on SkillFed](https://skillfed.io/packages/fetch-use) · [View on PyPI](https://pypi.org/project/fetch-use/)