Connecting your apps
Once a port is open, point any tool that supports a proxy at it. This page shows the proxy address format and ready-to-use examples for browsers, curl, and code.
The proxy address
Each open port is a standard proxy on your local machine. Use the host where BlankTrail Proxy runs (127.0.0.1 for a local install) and the port number from the dashboard. A port is either SOCKS5 or HTTP, as chosen when you opened it.
socks5://127.0.0.1:20134
http://127.0.0.1:20250
Trust the certificate
For HTTPS to work without errors, the device or tool must trust the BlankTrail Proxy root certificate (see Installation → Root certificate). Some HTTP clients let you point at the certificate file directly instead of installing it system-wide.
Browsers & anti-detect browsers
Set the port as the browser's HTTP/SOCKS proxy (or, in an anti-detect browser, as the upstream proxy for a profile). For driving a real browser, open the port with the Browser preset so its fingerprint is matched and normalized.
It works as a drop-in local proxy for ZennoPoster, BAS, Puppeteer, Playwright, Selenium and any tool that supports an HTTP/HTTPS or SOCKS5 proxy — no code changes to your scripts.
curl
curl -x socks5://127.0.0.1:20134 https://example.com
curl -x http://127.0.0.1:20250 https://example.com
Code examples
Python (requests)
import requests
proxies = {
"http": "socks5://127.0.0.1:20134",
"https": "socks5://127.0.0.1:20134",
}
r = requests.get("https://example.com", proxies=proxies)
print(r.status_code)
Node.js (undici)
import { ProxyAgent, request } from 'undici'
const agent = new ProxyAgent('http://127.0.0.1:20250')
const { statusCode } = await request('https://example.com', { dispatcher: agent })
console.log(statusCode)
Common connection issues
- Certificate errors on HTTPS — the certificate isn't trusted on this device. Install it (Installation → Root certificate).
- Connection refused — the port isn't open, or you used the wrong host/port. Check the Overview tab.
- Wrong protocol — a SOCKS5 port won't accept HTTP-proxy settings and vice versa. Match the protocol shown on the port.