Documentation
NeonProxy: IPv6-only proxies for modern apps and crawlers.
Getting Started
- Create an account on the login page (or register).
- Pick a region (e.g.,
eu1) and note your port(s). - Connect using HTTP or SOCKS5 from your app or CLI.
# Quick test (HTTP)
curl --ipv6 -x "http://USER:PASS@edge.eu1.neonproxy.example:10000" https://ifconfig.co
IPv6 Requirements
Your client must have outbound IPv6. If your ISP lacks IPv6, use a VPS that has IPv6 or a tunnel that allows v6 egress.
# Check IPv6 reachability
ping -6 edge.eu1.neonproxy.example
Authentication & Ports
- Per-user username/password.
- HTTP default port:
10000; SOCKS5 default port:1080. - Optional IP allowlist on Pro/Scale.
HTTP Proxy
# Proxy URL format:
http://USER:PASS@edge.<region>.neonproxy.example:10000
# Example with curl
curl --ipv6 -x "http://john:secret@edge.us1.neonproxy.example:10000" https://ifconfig.co
SOCKS5 Proxy
# Proxy URL format:
socks5h://USER:PASS@edge.<region>.neonproxy.example:1080
# curl test
curl --ipv6 -x "socks5h://john:secret@edge.us1.neonproxy.example:1080" https://ifconfig.co
Libraries & Code
// Node (axios + https-proxy-agent)
import axios from "axios";
import HttpsProxyAgent from "https-proxy-agent";
const agent = new HttpsProxyAgent("http://USER:PASS@edge.eu1.neonproxy.example:10000");
const res = await axios.get("https://ifconfig.co/ip", { httpsAgent: agent });
console.log(res.data);
# Python (requests)
import requests
proxies = {
"http": "http://USER:PASS@edge.eu1.neonproxy.example:10000",
"https": "http://USER:PASS@edge.eu1.neonproxy.example:10000",
}
print(requests.get("https://ifconfig.co/ip", proxies=proxies).text)
Limits & Fair Use
- Per-plan bandwidth caps; reasonable burst allowed.
- Strict anti-abuse policy; illegal content is prohibited.
- 99.9% monthly uptime target; credits if breached.
Status & Troubleshooting
- Test if your proxy auth works with
curlfirst. - For DNS resolution via SOCKS5, use
socks5h(notice theh). - Check your IPv6 routing/firewall before opening a ticket.