Configure any available plan and add-ons. Pay only for 48 hours.
Try proxiesFor your existing phone system, not a PBX component: dedicated UDP proxies that carry office IP telephony and VoIP traffic — softphones, SIP trunks, call-center dialers — over a fixed address your provider can whitelist. UDP plans from $5/month.
First, the disambiguation this page owes you: “SIP proxy” names two unrelated things, and we sell one of them. In VoIP engineering it’s a server component — Kamailio or OpenSIPS routing calls inside a phone system. Here it means a network proxy that carries your existing telephony’s traffic: your PBX, softphones, or dialer stay exactly as they are, and their packets travel to your SIP provider through a dedicated intermediate address instead of directly from your office connection. You’d want that detour for reasons that have nothing to do with call routing — the office sits behind carrier-grade NAT with an address you don’t control, the local network filters VoIP ports, or your SIP trunk provider authenticates by source IP and your connection can’t hold one.
The technical requirement that disqualifies most proxy products here is that a call is two streams, not one. Signaling — the SIP dialogue that sets up and tears down calls — runs over UDP or TCP on ports 5060 and 5061, and a capable proxy relays it either way. But the audio itself is RTP: a stream of UDP datagrams on dynamically negotiated ports, which an HTTP proxy cannot carry at all and most “SOCKS5” services silently drop because they never implemented UDP ASSOCIATE, the command that relays datagrams. The recognizable failure is a call that connects and stays silent — signaling made it through the TCP-shaped path, audio didn’t. Our UDP-enabled addresses run the full SOCKS5 command set, so both streams ride the same fixed IP; on the client side, SOCKS5-aware softphones take the address directly, and anything else routes through a TUN-mode tool that captures the whole application. IP whitelisting replaces credentials — cleaner than passwords in a datagram flow, and most VoIP software has nowhere to type them anyway.
The fixed address is the quiet half of the value. SIP trunk providers increasingly prefer IP authentication — they whitelist your source address and skip registration passwords entirely — which is excellent until your office IP changes and every trunk goes down at once. A dedicated proxy address never changes: the provider whitelists it once, registrations stay put through ISP outages and router reboots, and a company moving offices keeps its telephony identity intact. Pricing follows the UDP add-on model — 50% of the base plan, from $5/month on a dedicated IP, enabled in the checkout configurator; the UDP proxy page covers the add-on mechanics. If your SIP provider scores datacenter ranges with suspicion — a few do — static ISP addresses put the same fixed-IP arrangement on consumer-registered ranges.
Four proxy protocols — how they differ and when to use each one.
| HTTP | HTTPS | SOCKS4 | Works with UDP SOCKS5 |
|
|---|---|---|---|---|
| Traffic encryption | ✕ No TLS to the proxythe proxy connection is unencrypted | ✓ TLS tunnelto our server and the target site | Depends on the application protocolHTTPS traffic remains encrypted | Depends on the application protocolHTTPS traffic remains encrypted |
| Header handling | May add or modify HTTP headers | TunneledHTTP headers inside the tunnel are not modified | Passes application traffic unchanged | Passes application traffic unchanged |
| TCP / UDP | TCP | TCP | TCP | TCP + UDP |
| Username/password auth | ✓ Supported | ✓ Supported | ✕ No password authentication | ✓ Supported |
| Remote DNS resolution | Client-dependent | Client-dependent | ✕ Nothe client resolves the hostname | ✓ Supportedwhen the client sends the hostname to the proxy |
| When to choose it | Web and API traffic, especially with software that supports HTTP proxies | When you need a TLS-encrypted connection to the proxy | Legacy software that only supports SOCKS4 | General-purpose applications, gaming, streaming, and UDP traffic |
| HTTP, HTTPS, SOCKS4, and SOCKS5 are included with every static proxy plan. Rotating plans support HTTP and SOCKS5. Buy now | ||||
Point your softphone or PBX at the address as a SIP outbound proxy for office PBX setups: SOCKS5 with UDP ASSOCIATE carries the RTP audio, TCP handles signaling on ports 5060/5061. The snippets below cover testing the route and scripting your whitelist.
# HTTP or HTTPS proxy curl -x http://login:password@IP:port https://example.com # SOCKS5 curl --socks5-hostname IP:port \ --proxy-user login:password \ https://example.com
import requests proxy = "http://login:password@IP:port" # your proxy from the Dashboard r = requests.get( "https://example.com", proxies={"http": proxy, "https": proxy}, ) print(r.status_code)
import { ProxyAgent } from "undici"; const dispatcher = new ProxyAgent("http://login:password@IP:port"); const res = await fetch("https://example.com", { dispatcher }); console.log(res.status);
$ch = curl_init("https://example.com"); curl_setopt($ch, CURLOPT_PROXY, "IP:port"); curl_setopt($ch, CURLOPT_PROXYUSERPWD, "login:password"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($ch);
Choose a standard format or create a custom one with any field order and delimiter your software requires.
See the FAQ for the ports used by each protocol.
You can automate purchases, renewals, whitelist changes, and proxy list exports. Create an API key in your Dashboard in a couple of clicks.
Claude, Cursor, and other agents buy proxies, renew plans, and export updated proxy lists through an access token you create in your Dashboard. See how it works.
Per-IP prices shown are for the largest package size. Get an exact quote in the calculator above.
| IP | Country | Port | Protocol | |
|---|---|---|---|---|
| 98.175.31.222 | US | 4145 | SOCKS5 | |
| 199.187.210.54 | US | 4145 | SOCKS5 | |
| 192.252.210.233 | US | 4145 | SOCKS5 | |
| 68.1.210.189 | US | 4145 | SOCKS5 | |
| 124.248.177.43 | KH | 1080 | SOCKS5 | |
| 184.181.178.33 | US | 4145 | SOCKS5 | |
| 5.255.123.162 | NL | 1080 | SOCKS5 | |
| 66.42.224.229 | 41679 | SOCKS5 | ||
| 184.182.240.12 | US | 4145 | SOCKS5 | |
| 184.178.172.5 | US | 15303 | SOCKS5 |
A few service metrics—and feedback from our customers.
Quite a good service for the price it has. The downside is that some IPs have the wrong location. If the service team solves this problem it will be just great.
Prompt service, as well as a large number of different tariff plans. You can subscribe to several packages at the same time to use them via API. I bought unlimited proxies with rotation.
Overall I am very satisfied. Support is always in touch and ready to help at any time. Reasonable prices and easy payment method are other important advantages. In addition, there are no connection interruptions and the proxies fly consistently. What else do you need?
If you need to buy proxies at reasonable price, this is the best choice. I became a customer of the service half a year ago. The price is adequate, technical support is always helpful and, most importantly, you can use proxies without login or password. All I have to do is to subscribe to the IP from which the requests will be received and the proxy will be used. I will recommend you guys to everybody!
Can't find your answer? Message us in live chat — real humans reply.
No — and if you arrived looking for one, better to know in the first sentence. We don't provide PBX software, call routing, SIP registrars, or anything that participates in the SIP protocol itself; Asterisk, FreePBX, Kamailio, and OpenSIPS are that layer, and configuring them is their documentation's job. What we sell is the network underneath: a dedicated proxy address that your already-working phone system sends its traffic through, so your SIP provider sees one fixed IP instead of whatever your office connection happens to be that day. The confusion is baked into the terminology — VoIP engineering used the words “SIP proxy” for a server role decades before commercial proxy services existed — but the practical test is simple: if your question is “how do I route calls between extensions,” you need PBX software; if it's “how do I get my PBX a stable public address my carrier will whitelist,” you're on the right page. The two layers coexist happily: plenty of our telephony customers run Asterisk behind our addresses.
Both, and the split matters because a working call needs each at different moments. TCP-side: every address answers on HTTP, HTTPS, SOCKS4, and SOCKS5, so SIP signaling over TCP or TLS (ports 5060/5061) relays without any special plan — that part works even on our base products. UDP-side: SIP-over-UDP signaling and, critically, the RTP audio streams require the UDP add-on, which enables full SOCKS5 UDP ASSOCIATE on every IP in the plan — 50% of the base price, from $5/month, selected in the checkout configurator. The buying rule: if your phone system signals over TCP and you only need the fixed address for whitelisting, a base dedicated IP might technically suffice, but audio will still be UDP, so in practice every real telephony deployment should take the add-on — a silent call with perfect signaling is the exact failure mode of skipping it. One honest exclusion: the add-on covers datacenter, dedicated, and ISP plans, not rotating proxies — which would be the wrong product for persistent registrations anyway.
Yes — that's the single most common reason telephony customers buy here, and the whole product is shaped for it. Every dedicated address is static for the life of your plan: you give it to your SIP trunk provider once, they add it to their IP-authentication list, and the trunk works without registration passwords from then on. The failure this replaces is familiar to anyone running IP-auth trunks from an office: consumer and even business connections re-issue addresses after outages and router restarts, and each change means dead trunks until someone updates the whitelist — usually discovered when the morning's first call fails. A proxy address has no such life events. Two practical notes: give the provider the proxy IP (that's your traffic's source as they see it), and whitelist your office's current IP in our Dashboard so your equipment authenticates to the proxy the same passwordless way — up to 5 IPs at no charge, changeable when the office moves. If the provider's security review is strict about address origin, the ISP variant gives you the same permanence on a consumer-registered range.
A different proxy type may be a better fit for your use case. All products use the same Dashboard and support team.
An IP reserved exclusively for you, available from a single IP. Speeds of up to 500 Mbps per proxy.
Learn moreStatic ISP-registered residential IPs for use cases where network origin matters.
Learn morePay per request and access the full 100,000+ IP pool through a single gateway. Built for web scraping and API workloads.
Learn moreSOCKS5 with UDP support — for gaming, streaming, and VoIP.
Learn moreWe can sign a contract and provide all the documents your accounting team needs. Most business orders are activated within 24 hours of your request.