Documentation v2.0
MuchLogin Documentation
Everything you need to orchestrate stealth browser profiles, integrate residential proxies, and automate identity aging with AI agents.
Stealth Engines Overview
Learn the differences between MuchBrowse, MuchSocial, MuchScrape, and MuchMobile.
FastAPI REST & WebSocket API
Launch sessions programmatically with POST /nexus/api/v1/engine/launch.
Proxy Fleet Management
Configure HTTP/SOCKS5 residential and 5G cellular proxy rotation with health scoring.
MCP & AI Agent Delegation
Expose stealth browser sessions directly to Claude, Cursor, and autonomous AI agents.
Quick Launch Python SDK Example
import requests
# Launch a stealth session via MuchLogin API
response = requests.post(
"https://plhq.cc/nexus/api/v1/engine/launch",
headers={"Authorization": "Bearer YOUR_JWT_TOKEN"},
json={
"engine": "muchbrowse",
"proxy": "http://user:pass@residential.proxy.com:8080",
"url": "https://target.com"
}
)
session = response.json()
print("CDP Stream:", session["cdp_url"])