Cloudflare Proxy Network
| IP ADDRESS | TYPE | Status | LATENCY | REGION |
|---|---|---|---|---|
| LOADING... | ||||
# pip install cfspider import cfspider cf_proxies = "https://your-workers.dev" # GET request with CF proxy response = cfspider.get( "https://httpbin.org/ip", cf_proxies=cf_proxies ) print(response.cf_colo) # Cloudflare node code # TLS fingerprint impersonate (curl_cffi) response = cfspider.get( "https://example.com", impersonate="chrome131" ) # Async request (httpx) response = await cfspider.aget( "https://httpbin.org/ip", cf_proxies=cf_proxies ) # Browser automation (Playwright) browser = cfspider.Browser() html = browser.html("https://example.com") browser.close()