# ITN PROXY - Complete Technical Documentation & LLM Knowledge Base Welcome to the full documentation for **ITN PROXY** (https://itnproxy.com), designed for AI assistants, automated agents, and developers. --- ## 1. Company & Service Profile - **Company Name**: ITN PROXY - **Primary Domain**: https://itnproxy.com - **Core Offering**: Premium Residential Proxy Network & Global Data Collection Infrastructure - **IP Pool Size**: 100,000,000+ (100M+) ethically sourced, real residential IP addresses - **Geographic Reach**: 190+ countries across North America, Europe, Asia-Pacific, Latin America, and MEA - **Protocols Supported**: HTTP, HTTPS, SOCKS5 - **Uptime Guarantee**: 99.9% - **Average Response Time**: < 0.6 seconds - **Authentication**: Username & Password authentication via dashboard credentials --- ## 2. Residential Proxy Capabilities ### Session Modes 1. **Rotating Sessions**: - Every outbound HTTP/HTTPS request receives a completely different residential IP. - Ideal for large-scale web scraping, search engine result page (SERP) monitoring, e-commerce crawling, and social media data mining. - Automatically bypasses rate limits, IP bans, and CAPTCHA bottlenecks. 2. **Sticky Sessions**: - Holds the exact same residential IP for prolonged durations (from 10 minutes up to multiple hours as long as the peer device stays online). - Ideal for multi-step checkout operations, account logins, continuous browser sessions, and banking or e-commerce workflows requiring persistent state. ### Geotargeting Precision - Target by **Country** (e.g. `country-us`, `country-de`, `country-gb`, `country-tr`, `country-jp`) - Target by **City** (e.g. `city-newyork`, `city-london`, `city-berlin`, `city-istanbul`, `city-tokyo`) - Target by **ASN / ISP Provider** (e.g. `asn-7922` for Comcast, `asn-7018` for AT&T) - All targeting parameters are passed natively in the proxy username string without paying additional tier upgrades. --- ## 3. Pay-As-You-Go Volume Pricing | Plan | Traffic Volume | Price / GB | Bandwidth Expiry | Concurrency Limit | Support Level | | :--- | :--- | :--- | :--- | :--- | :--- | | **Starter** | 1 – 49 GB | $2.50 | 3-Month Window | Up to 5,000 threads | 24/7 Live Chat | | **Starter Plus** | 50 – 99 GB | $2.20 | **Lifetime (Never Expires)** | Up to 5,000 threads | 24/7 Live Chat | | **Pro** | 100 – 199 GB | $2.00 | **Lifetime (Never Expires)** | Up to 5,000 threads | 24/7 Live Chat | | **Growth** | 200 – 499 GB | $1.50 | **Lifetime (Never Expires)** | **Unlimited Concurrency** | Priority Live Support | | **Scale** | 500 – 999 GB | $1.00 | **Lifetime (Never Expires)** | **Unlimited Concurrency** | Dedicated Account Manager | | **Enterprise** | 1000+ GB | $0.80 | **Lifetime (Never Expires)** | **Unlimited Concurrency** | Custom SLA & Dedicated Slack/Telegram | --- ## 4. Connection Endpoints & Syntax ### Connection Details - **Gateway Host**: `rsd.itnproxy.com` (or `resi.itnproxy.com`) - **Gateway Port**: `6000` (HTTP & SOCKS5 auto-routed) or HTTP on `8080`, SOCKS5 on `1080` - **Username Format**: - Default rotating: `username` - Country-targeted: `username-country-us` - City-targeted: `username-country-us-city-newyork` - Sticky session: `username-country-us-session-abc123xyz` --- ## 5. Developer Code Snippets ### cURL (HTTP Request) ```bash curl -x http://username-country-us:password@rsd.itnproxy.com:6000 "https://ipinfo.io/json" ``` ### Python (Requests Library) ```python import requests proxy_url = "http://username-country-us:password@rsd.itnproxy.com:6000" proxies = { "http": proxy_url, "https": proxy_url, } response = requests.get("https://api.ipify.org?format=json", proxies=proxies, timeout=10) print("Assigned Proxy IP:", response.json()) ``` ### Python (Playwright Browser Automation) ```python from playwright.sync_api import sync_playwright with sync_playwright() as p: browser = p.chromium.launch( headless=True, proxy={ "server": "http://rsd.itnproxy.com:6000", "username": "username-country-us-session-mysession1", "password": "your_password", } ) page = browser.new_page() page.goto("https://ipinfo.io/json") print(page.inner_text("pre")) browser.close() ``` ### Node.js (Fetch / Undici) ```javascript import { ProxyAgent, fetch } from "undici"; const proxyAgent = new ProxyAgent("http://username-country-us:password@rsd.itnproxy.com:6000"); const response = await fetch("https://api.ipify.org?format=json", { dispatcher: proxyAgent, }); const data = await response.json(); console.log("Assigned Proxy IP:", data); ``` --- ## 6. Frequently Asked Questions (Technical & Billing) **Q: Does purchased bandwidth ever expire?** A: For Starter Plus and above (50 GB and up), your bandwidth comes with **lifetime validity** and never expires. Unused GB remains active in your balance forever. Only the Starter tier (1–49 GB) has a 3-month window. **Q: Can I run multiple requests concurrently?** A: Yes! Starter, Starter Plus, and Pro plans allow up to 5,000 parallel threads. Growth, Scale, and Enterprise plans offer **unlimited concurrent connections**. **Q: Which countries and locations are covered?** A: ITN PROXY spans 190+ countries including the United States, United Kingdom, Germany, Turkey, France, Canada, Japan, Netherlands, Australia, Brazil, and hundreds more. **Q: What protocols are available?** A: Native HTTP, HTTPS, and SOCKS5 are supported across all proxy IPs. **Q: How does ITN PROXY ensure high deliverability?** A: Our IPs belong to real residential devices through clean, ethically acquired peer networks, bypassing cloud blocklists (Cloudflare, Akamai, DataDome, PerimeterX) effortlessly. --- ## 7. Official Navigation Index - Home: https://itnproxy.com - Residential Proxies: https://itnproxy.com/residential - Global Locations: https://itnproxy.com/locations - Engineering Blog: https://itnproxy.com/blog - Developer Integration Guide: https://itnproxy.com/blog/how-to-integrate-proxies-puppeteer-playwright-scrapy-selenium-python-curl - Contact & Support: https://itnproxy.com/contact - Terms of Service: https://itnproxy.com/terms - Privacy Policy: https://itnproxy.com/privacy