Models

What Is ISDN (Integrated Services Digital Network) in a Contact Center?

A legacy circuit-switched telephony standard delivering digital voice and data over copper lines, often deployed as PRI trunks in older contact centers.

What Is ISDN (Integrated Services Digital Network) in a Contact Center?

Integrated Services Digital Network (ISDN) is a legacy circuit-switched telephony standard for digital voice and data over copper lines. Contact centers historically deployed ISDN as PRI trunks — T1 in North America (23 voice channels plus a D-channel for signaling) and E1 in Europe (30 voice channels plus signaling). ISDN is being retired worldwide; carriers in the UK, Germany, and Japan have set explicit shutdown dates. Replacement is SIP trunking and cloud voice over IP. FutureAGI does not interact with ISDN directly — we evaluate the voice-AI agent that sits behind whatever telephony the contact center uses.

Why ISDN Matters in Production LLM and Agent Systems

ISDN matters today only because it still exists. Many regulated, government, or rural contact centers still run ISDN, and migration is non-trivial. The pain shows up as a latency and audio-quality penalty. A typical ISDN-fronted contact center transcodes calls through a session border controller into the AI voice stack, adding 60–120 ms of one-way latency and reducing audio fidelity (G.711 a-law/μ-law at 8 kHz) compared with native cloud voice (Opus at 16 kHz or higher).

The pain is concrete. SREs see higher p99 time-to-first-audio because every turn pays the transcode tax. Voice-AI engineers see ASR accuracy drop for accented speech because narrowband audio strips harmonic detail their model was trained on. Compliance teams in regulated industries see ISDN as a recording-and-retention requirement that constrains cloud architecture choices. CX teams see CSAT lag the AI cohort metrics because audio sounds dated to younger callers used to mobile VoIP.

In 2026, the ISDN-shutdown clock is running globally. Migration to SIP and cloud voice is the bigger story, but for the next few years a meaningful share of inbound contact-center traffic still hits AI tiers through ISDN-PRI bridges. Voice-AI evaluation has to account for that audio profile.

How FutureAGI Handles ISDN-Originated Traffic

FutureAGI’s approach is to ignore the carrier path as a quality proxy and evaluate the media that reaches the AI voice stack. In a FutureAGI workflow, traceAI-livekit or traceAI-pipecat opens voice spans at media capture, AudioQualityEvaluator records sample-rate, clipping, codec, and packet-loss evidence, ASRAccuracy scores transcription fidelity, and LiveKitEngine replays narrowband Scenario cohorts before deploy.

A concrete example: a regional bank’s voice-AI agent fronts an ISDN-PRI inbound queue through an Asterisk SBC. Engineers see ASR accuracy 6 points lower for ISDN-originated calls than for direct WebRTC calls. FutureAGI’s AudioQualityEvaluator flags consistent narrowband sampling and a slight DC offset on the SBC output. The fix is upsampling and a filter on the SBC, plus a fine-tuned ASR variant on narrowband data. Regression eval against the same Scenario set confirms the fix lifts ASR by 4 points before rollout.

The release gate can then require the ISDN cohort in TestReport to stay within two ASR points of the SIP cohort and keep p99 turn latency below the team’s voice SLO.

Unlike Twilio Voice Insights or a generic call-recording QA tool, which inspect carrier or recording-layer health after the fact, FutureAGI scores the audio the AI agent actually receives. That distinction matters because the agent’s received waveform, not the telco’s call record, determines whether the model hears the caller correctly.

How to Measure or Detect It

ISDN itself is a telephony-layer concern, so measure it as a cohort effect rather than a carrier inventory field. Start by tagging calls with upstream path when your SBC, CCaaS, or SIP gateway exposes it, then compare voice-agent metrics for ISDN, SIP, and WebRTC legs. If upstream type is unknown, narrowband sample rate plus repeated SBC latency is a useful detection proxy inside FutureAGI.

  • AudioQualityEvaluator: sample rate, bandwidth, codec, packet-loss, jitter; flags narrowband audio paths.
  • ASRAccuracy: per-call word-error rate; cohort by upstream telephony type when known.
  • Time-to-first-audio p99: rises when SBC transcoding adds latency before the agent can speak.
  • Cohort accuracy delta: ASR, containment, and resolution scores split by ISDN-originated vs SIP-originated calls.
  • Packet-loss rate: SBC-side loss bleeds into ASR errors and caller interruption spikes.
  • Escalation rate: a practical proxy when telephony metadata is missing but callers repeat themselves or bail to a human.
from fi.evals import AudioQualityEvaluator, ASRAccuracy

audio = AudioQualityEvaluator().evaluate(audio_path="/calls/isdn-leg.wav")
asr = ASRAccuracy().evaluate(audio_path="/calls/isdn-leg.wav", reference_text=ground_truth)
print(audio.score, asr.score)

Common Mistakes

  • Comparing ISDN ASR scores to cloud VoIP scores without cohorting. Narrowband PRI, SIP, and WebRTC legs have different ceilings; aggregate dashboards hide the regression. Set separate baselines.
  • Using a wideband-trained ASR on narrowband ISDN audio. Validate 8 kHz calls separately before changing prompts, turn-taking logic, or TTS, then rerun golden transcripts.
  • Ignoring SBC-induced latency. A 100 ms transcode hop may not appear in CCaaS summaries, but it shifts p99 time-to-first-audio. Monitor agent-side latency.
  • Treating ISDN retirement as a procurement detail. Carrier timelines affect recording, routing, failover, and eval datasets that voice agents depend on; plan eval data changes early.
  • Shipping no narrowband regression suite. If LiveKitEngine scenarios only use wideband audio, production PRI calls become an untested cohort before launch.

Frequently Asked Questions

What is ISDN in a contact center?

ISDN (Integrated Services Digital Network) is a circuit-switched telephony standard for digital voice and data, deployed in contact centers as PRI trunks (T1 in North America, E1 in Europe). Each PRI carries 23 or 30 voice channels plus a signaling channel.

How is ISDN different from SIP trunking?

ISDN is circuit-switched over dedicated copper lines; SIP trunking is packet-switched over IP networks. SIP is cheaper, easier to scale, and integrates with cloud voice. Most carriers are retiring ISDN in favor of SIP.

Does FutureAGI work with ISDN-based contact centers?

FutureAGI does not interact with ISDN directly. We evaluate the voice-AI agent that sits behind whatever telephony layer the contact center uses, via `ASRAccuracy`, `AudioQualityEvaluator`, and traceAI spans starting at media capture.