Live now — routing 3.2M+ minutes today

We were routing calls before VoIP was mainstream.

Since 2000, WH Telecom has been the wholesale voice termination partner carriers call when it absolutely has to work. 26 years. 190+ countries. 1.2 billion minutes a year. Still founder-led. Still picking up on the first ring.

MK SA JP DL
Trusted by 500+ carriers since 2000
0M+
Minutes routed / year
0+
Countries & territories
99.9%
Guaranteed uptime
0yrs
Founded in 2000

Carriers who've stayed with us for years — not months

VoxConnect
TelcoStar
Pacific Voice
EuroTel
AsiaLink
NetVoice
GlobalCarrier
MegaVoIP
VoxConnect
TelcoStar
Pacific Voice
EuroTel
AsiaLink
NetVoice
GlobalCarrier
MegaVoIP
Why carriers switch to us

Your current provider launched after we'd already routed a billion calls.

Most VoIP termination companies are 5–10 years old. We've been battle-testing routes, catching fraud, and building carrier relationships since the year 2000. That gap shows up in your ASR, your margins, and your 3am outage response times.

The typical provider

  • Grey routes that drop 15–30% of calls
  • IRSF and wangiri bleeding $10K+/month
  • "Support" that replies in 24–48 hours
  • Static LCR with last month's rate decks
  • 2–4 weeks to onboard and go live
VS

WH Telecom — since 2000

  • 96%+ ASR on direct Tier-1 routes built over 26 years
  • FraudGuard™ trained on 26 years of attack patterns — $12M+ saved last year
  • 24/7 NOC staffed by career engineers — first ring, every time
  • AI-powered LCR trained on billions of CDRs since 2000
  • Live in 30 minutes — we've done this 500+ times
Platform

26 years of lessons. Baked into every feature.

Nothing on this platform is theoretical. Every feature was forged from real outages, real fraud attacks, and real carrier demands across two and a half decades of production traffic.

Live dashboard Real-time
96.4% ASR 2.1%
3,847 Active calls 12%
284s Avg ACD 5s
12h agoNow

AI route optimization — trained on 26 years of data

Most LCR engines have months of data. Ours has 26 years of CDRs — billions of calls across 190+ countries. Our ML models don't guess the best route. They know it. Carriers typically see 8–15% ASR improvement in their first week.

Before
72% ASR
After
96% ASR

FraudGuard™

We've been catching telecom fraud since before it had a name. 26 years of attack-pattern data powers ML models that detect IRSF, wangiri, and traffic pumping before the first fraudulent call completes.

$12M+ Saved for carriers last year alone

Real-time analytics

See every metric the moment it happens — ASR, ACD, PDD, margin, all live. Drill into any CDR. Set custom alerts. No waiting until tomorrow for yesterday's data.

Live Streaming Alerts

Direct interconnects

Relationships don't build overnight. We've spent 26 years securing Tier-1 agreements on every continent. No aggregators. No grey routes. Every path is a direct line we built ourselves.

Elastic infrastructure

Our infrastructure has survived 26 years of traffic spikes, DDoS attacks, and carrier failures. Scale from 50 to 50,000 concurrent channels. Geo-redundant SBCs failover automatically.

24/7 NOC — the team that's seen everything

Our NOC engineers have an average tenure of 11 years. They've seen every failure mode, every edge case, every 3am crisis that telecom can throw at you. They pick up on the first ring — 365 days a year. Average incident response: under 15 minutes.

<15 min response First-ring pickup 365 days/year
Get started

We've done this 500+ times.

After 26 years and 500+ carrier onboardings, we've removed every point of friction. Most carriers send their first live call within 30 minutes.

1
60 seconds

Create your account

One form. No paperwork, no credit card, no sales call. Your SIP credentials are generated instantly — because we learned a long time ago that forcing carriers through hoops loses good customers.

2
5 minutes

Point your trunk

Aim your PBX at our SIP gateway. TLS and SRTP out of the box. We've written integration guides for every major softswitch and PBX — because we've connected to all of them.

3
10 minutes

Test calls — free credits, no risk

Route test traffic to any of our 190+ destinations on our dime. Check ASR, ACD, and voice quality yourself. We don't ask you to trust us — we ask you to verify.

4
Ready

Go live and scale

Fund prepaid and ramp at your own pace. Need 50 channels today and 5,000 next month? Done. Our infrastructure has been scaling carriers for over two decades.

Start free — live in 30 minutes

No credit card · No contracts · Free test credits included

Global network

A network that took 26 years to build.

You can't buy carrier relationships. You earn them — one interconnect at a time, over years and decades. Our network spans 190+ countries because we started building it in 2000 and never stopped.

US East US West Canada London Frankfurt Amsterdam Singapore Hong Kong Tokyo Dubai Bahrain
North America US East · US West · Canada 3 PoPs All operational
Europe London · Frankfurt · Amsterdam 3 PoPs All operational
Asia Pacific Singapore · Hong Kong · Tokyo 3 PoPs All operational
Middle East Dubai · Bahrain 2 PoPs All operational
  • SIP, SIP/TLS, SRTP — encrypted end-to-end
  • Sub-50ms latency on premium routes
  • Full CLI pass-through
  • N+1 redundancy — zero SPOFs
Developers

An API built by engineers who've integrated the bad ones.

After 26 years of building integrations, we know exactly what developers need: clean REST endpoints, real-time webhooks, WebSocket CDR streams, and documentation that actually matches the code.

  • RESTful API — 23ms avg response time
  • Real-time CDR streaming via WebSocket
  • Programmatic rate-deck and route management
  • WebRTC, SMPP, and number porting endpoints
curl -X POST https://api.whtelecom.com/v1/routes/lookup \
  -H "Authorization: Bearer wh_live_***" \
  -H "Content-Type: application/json" \
  -d '{
    "destination": "+442071234567",
    "codec": "G.711"
  }'

# 200 OK — 23ms
{
  "route": "UK-PREMIUM-T1",
  "rate": 0.0042,
  "asr": 96.4,
  "acd": 284,
  "quality": "premium"
}
import requests

resp = requests.post(
    "https://api.whtelecom.com/v1/routes/lookup",
    headers={"Authorization": "Bearer wh_live_***"},
    json={"destination": "+442071234567", "codec": "G.711"}
)
route = resp.json()

# Response in 23ms
print(f"Route: {route['route']}, ASR: {route['asr']}%")
# Route: UK-PREMIUM-T1, ASR: 96.4%
const resp = await fetch('https://api.whtelecom.com/v1/routes/lookup', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer wh_live_***',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    destination: '+442071234567',
    codec: 'G.711'
  })
});

const route = await resp.json();
// Response in 23ms
console.log(`Route: ${route.route}, ASR: ${route.asr}%`);
// Route: UK-PREMIUM-T1, ASR: 96.4%
Pricing

Transparent since 2000. Still no contracts.

We've never locked a carrier into a contract. Pay per minute, prepaid. If we don't earn your traffic, we don't deserve it. Volume discounts apply automatically as you grow.

Starter

$0.008/min

Test our routes with zero commitment. See the quality difference for yourself.

  • 50 concurrent channels
  • 100+ countries
  • Standard analytics
  • Email support
Get started

Enterprise

Custom

For carriers routing millions of minutes. Dedicated infrastructure, bespoke rate decks, and your own account manager.

  • Unlimited channels
  • Custom rate decks
  • Dedicated SBCs
  • 99.99% SLA
  • White-label portal
  • Dedicated account manager
Contact sales

No contracts. No minimums. Prepaid. If we have to lock you in, we don't deserve your business.

From our carriers

We don't do case studies. Our carriers do.

Real results from carriers who switched. No paid endorsements — just operators who found something better and want you to know about it.

"Switched our US termination to WH Telecom — ASR jumped 12% literally overnight. These guys have been at this longer than half the companies in our vendor list have existed. The depth of their network is unmatched."
MK
Marcus Klein
CTO, VoxConnect Europe
+12% ASR improvement
"Within our first month, FraudGuard caught $47K in IRSF attacks our previous provider never even detected. It's the kind of protection you only get from a team that's been fighting telecom fraud for over two decades."
SA
Sarah Al-Rashid
VP Ops, TelcoStar MENA
$47K fraud blocked in month 1
"First contact to production traffic in under 2 hours. When we hit a routing issue at 3am on a Sunday, their NOC answered on the first ring. Not a bot — an engineer who already knew our setup."
JP
James Park
Founder, Pacific Voice Networks
Live in under 2 hours
FAQ

Questions we've answered a few hundred times.

When your network needs to deliver a voice call to another country or carrier, you need a termination partner to complete the last mile. That's us. WH Telecom maintains direct interconnects with destination carriers in 190+ countries — relationships we've been building since the year 2000. We're the bridge between your network and the rest of the world.
30 minutes is typical. Sign up, get SIP credentials instantly, point your trunk, test with free credits, and go. We've onboarded over 500 carriers this way — the process has been refined over 26 years to remove every possible friction point.
Never have. Never will. We've been prepaid and pay-as-you-go since 2000. No minimums, no setup fees, no cancellation penalties. We believe if we have to lock you in, we don't deserve your business. Enterprise carriers can optionally negotiate volume agreements for better per-minute rates.
G.711 (a-law/u-law), G.729, OPUS, and T.38 for fax. Transcoding is automatic, free, and handled on our SBCs. Our platform negotiates the optimal codec with each destination carrier based on 26 years of route-quality data. Encryption via TLS/SRTP is supported on all routes.
FraudGuard is built on machine learning models trained on 26 years of call-pattern data — the largest proprietary dataset in wholesale VoIP. It combines real-time behavioral analysis with industry blacklists to detect and block IRSF, wangiri, and traffic pumping before fraudulent calls complete. It saved our carriers over $12M last year. Included on Professional and Enterprise plans at no additional cost.
Starter plans get email support. Professional and Enterprise carriers get 24/7 NOC access via phone, chat, and tickets — staffed by career telecom engineers with an average tenure of 11 years. They've seen every failure mode this industry can produce. Enterprise plans also include a dedicated account manager who knows your traffic patterns by name.

26 years of trust. 30 minutes to prove it.

500+ carriers route with us because we earned it — one call at a time, over two and a half decades. See the difference yourself.

No credit card required Never any contracts 30-day money-back guarantee Live in under 30 minutes