Quickstart
This gets one request out through a residential exit. Rotating ISP and Rotating DC work the same way. Only the endpoint changes.
-
Get your credentials.
Sign in to app.rayobyte.com, open your product, and go to Proxy Access. Copy the username, password, host and port.
-
Send a request.
Terminal window https://api.ipify.orgimport requestsr = requests.get("https://api.ipify.org", proxies={"http": proxy, "https": proxy})print(r.text)import { HttpsProxyAgent } from 'https-proxy-agent';const agent = new HttpsProxyAgent();const res = await fetch('https://api.ipify.org', { dispatcher: agent });console.log(await res.text());client := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxyURL)},}resp, _ := client.Get("https://api.ipify.org") -
Run it twice.
You should get two different IPs. Residential proxies rotate on every request unless you ask for a sticky session.
Pick a country
Section titled “Pick a country”Targeting options append to your password, not your username. This trips people up constantly. See How targeting works.
https://api.ipify.orgKeep the same IP
Section titled “Keep the same IP”Reuse any session id and you keep the same exit.
https://api.ipify.orgWhat next
Section titled “What next”- Authentication: skip passwords with an IP whitelist
- Targeting: the full parameter set
- Entry points: connect somewhere closer than
us-east
Was this page helpful?
Thanks — that helps us fix it.