Skip to main content

Proxies & IP Rotation

Wryn automatically handles proxies and IP rotation to bypass anti-bot protection.

Automatic Proxy Management

Wryn includes:

  • 10M+ residential IPs worldwide
  • Automatic rotation on detection
  • Geographic targeting
  • Session persistence

No configuration needed - it works automatically!

Geographic Targeting

Target specific regions:

result = client.scrape(
url="https://region-specific-site.com",
options={
"proxy_country": "US" # United States
}
)

Supported countries:

  • US - United States
  • GB - United Kingdom
  • CA - Canada
  • AU - Australia
  • IN - India
  • And 190+ more

Session Persistence

Maintain the same IP across requests:

# First request
result1 = client.scrape(
url="https://example.com/login",
options={"session_id": "my-session"}
)

# Subsequent requests use same IP
result2 = client.scrape(
url="https://example.com/dashboard",
options={"session_id": "my-session"}
)

Next Steps