TotalPathby Nopaque

    Map, test, and prove
    every voice journey.

    TotalPath is the on-demand voice testing platform for contact centres in transformation, migration, or steady-state. One canonical map. Real PSTN calls. Regression, mission, and load tests sharing the same infrastructure. Dated, evidence-grade compliance reports built from the same runs.

    Self-serve
    Start free - no demo
    Account in minutes. Free tier every month. PAYG when you outgrow it. Per-second billing.
    Start free
    Real calls over PSTNVendor-neutral mappingEU AI Act · FCA · OfcomPer-second billing
    01 · Mapping

    Map what you have, before you change it.

    A canonical map of every voice journey on every number, across vendors, modalities, and revisions. The same map drives every test that follows - and the same map you hand to your migration partner.

    • Voice + AVE + AI agents. DTMF, voice-first, conversational.
    • Auto-discover or model by hand. Whichever your team prefers.
    • Versioned and shareable. One source of truth for the org.
    app.nopaque.co.uk/platform/mapping/main-retail-line
    MAPPING · v17
    ENTRY+44 20 7946 0000MENU · 1AccountsMENU · 2Card lost or stolenMENU · 3Speak to an agentBALANCERead balanceTRANSFERMove fundsBLOCKBlock cardQUEUETo agent
    app.nopaque.co.uk/platform/testing/runs
    TESTING · Runs
    5 RUNS · LAST 24h
    3 PASS1 REGRESSED1 RUNNING
    Accounts → Balance → Confirm
    BATCH · 12 personas · diff vs run #1142
    PASS
    Lost card → Block → Confirmation SMS
    MISSION · GPT-4o agent · 1 call
    PASS
    Transfer between accounts → Verify → Receipt
    SWEEP · 24 amounts · diff vs run #1131
    REGRESSED
    Smoke · main retail entry
    ONE-SHOT · scheduled hourly
    PASS
    Speak to an agent → Wait → Route
    MISSION · 3/8 calls complete
    RUNNING
    02 · Testing

    Test like a customer would.

    Real PSTN, real timing, real personas. Run one-shot for a spot-check, batch for regression, sweep for edge cases, mission for AI-agent-judged journeys. Same authoring, same billing primitive.

    • One-shot · batch · sweep · mission. One platform, four shapes.
    • Regression diffs by default. Every run scored against the last green run - transcript, path, timing.
    • Multi-persona overlays. Vary accent, hesitation, urgency. Test behaviour, not just routing.
    03 · Load

    Load testing without buying the load.

    Drive concurrent volume on demand. Scale up for the spike, scale down when it's over, billed by the second. Most contact centres find their capacity ceiling on the day they don't want to. We make that a Tuesday afternoon.

    • Elastic concurrency. Concurrency is a config value, not a capex item.
    • Ramp · sustain · soak · spike. All first-class profiles.
    • What actually breaks. Queue depth, handle-time degradation, prompt-engine latency under contention.
    app.nopaque.co.uk/platform/load-tests/ramp-tuesday-13:00
    LOAD · Ramp profile · live
    Concurrent callers
    412 / 500 target
    P95 hold
    11.4s · trending up
    500400200013:0013:1513:3013:45QUEUE DEPTH 100 · HOLD CLIMBSPROMPT-ENGINE STALLS
    RAMP PROFILE · 0 → 500 over 45minBILLED · 412 active call-seconds · live
    app.nopaque.co.uk/platform/compliance/scans/2026-W19
    COMPLIANCE · Week 19 scan
    REPORT · 2026-W19 · WK 11 MAY → 17 MAY
    Compliance Scan · Acme Bank PLC
    Signed
    EU AI Act Art 50FCA PRIN 2AOfcom GC
    AI-agent self-identification on call entry
    EU-AI-50.1 · 12/12 numbers
    Pass
    Vulnerable-customer handoff path reachable
    FCA-PRIN-2A.7 · 12/12 numbers
    Pass
    Hold-music duration within Ofcom GC C3.7 limits
    OFCOM-GC-C3.7 · 11/12 numbers
    1 regression
    Opt-out to human reached within 3 prompts
    EU-AI-50.4 · 12/12 numbers
    Pass
    17/18 PASSED · 1 REGRESSION · 312 PSTN CALLSSHA-256 · 7f9a…b21d
    04 · ComplianceLive beta

    From testing to attestation.

    The evidence trail your regulator (and your board) want, automatically generated from the journeys you're already testing. Same maps. Same tests. New report - dated, signed, hash-anchored.

    • EU AI Act Art 50. 18-test catalogue. Self-ID, opt-out, disclosures, transparency.
    • FCA PRIN 2A · Consumer Duty. Vulnerable-customer journeys, fair-value comms, foreseeable harm.
    • Ofcom GC. Hold-music duration, recording disclosure, CLI integrity, emergency routing.
    • Bring your own. Custom tests for brand voice, accent coverage, named-entity handling.
    05 · Developers

    Build voice-side change into your pipeline.

    Every TotalPath capability is exposed through a workspace-scoped REST API and a live MCP server. Gate deploys on regression. Let your AI agent run a compliance scan from chat. Build whatever workflow fits the team you have.

    .github/workflows/voice-tests.ymlSHIPPED · REST API
    name: voice-regression
    on: [push, pull_request]
    
    jobs:
      test-ivrs:
        runs-on: ubuntu-latest
        env:
          NOPAQUE_API_KEY: ${{ secrets.NOPAQUE_API_KEY }}
        steps:
          - run: pip install nopaque
          - name: Run mission test & block merge on regression
            run: |
              python - <<'PY'
              from nopaque import Nopaque
              client = Nopaque()  # reads NOPAQUE_API_KEY
    
              run = client.mission_tests.launch(config_id="$CFG", phone_number="+442012345678")
              client.testing.wait_for_complete(run.id)
    
              if run.verdict != "pass":
                  raise SystemExit(f"voice regression: {run.failures}")
              PY
            # or - REST: curl -X POST https://api.nopaque.co.uk/mission-test-configs/$CFG/launch ...
            # nopaque-cli (ergonomic wrapper) lands Q3 2026
    REST API live today - mapping, testing, compliance. OpenAPI 3.1 spec at /openapi.json.
    Python & Node SDKs - pip install nopaque · npm i @nopaque/sdk.
    Workspace-scoped keys - tier-rate-limited, isolated per workspace.
    Soonnopaque-cli - ergonomic shell wrapper for the SDKs. Q3 2026.
    Claude · ops reviewmcp.nopaque.co.uk
    Diff this week's mission tests against last green. Open a ticket if anything regressed.
    ▸ getMissionTestRun
    runId = "run_8a2b…"
    ▸ getRunResults
    runId = "run_8a2b…"
    17/18 mission tests pass. One regressed: Move funds hold-music up from 5.8s → 9.2s - breaches OFCOM-GC-C3.7. Drafting ticket now…
    14 curated tools - mapping, testing, compliance. Safe-by-default; no raw destructive ops.
    Auth via workspace API key - same isolation as REST.
    A2A discoverable - agent-skills + agent-card published at /.well-known/.
    06 · Pricing

    On-demand, not capacity-planned.

    Legacy voice-testing tools force you to buy capacity for every test you might want to run. TotalPath is cloud-native - pay for the calls you make, scale to zero between them. Pre-purchased contracts available when you want predictable spend.

    The old way

    Capacity-planned

    • Pre-purchase capacity for the worst case.
    • 3-minute tests on 5-min cadence eat a whole line.
    • Ran out mid-week? Negotiate, top up.
    • Year-end: unused minutes you already paid for.
    The TotalPath way

    Per-second cloud

    • Per-call, per-second billing.
    • Regression + load + compliance share infrastructure.
    • Pre-purchase contracts when you want predictable spend (~40% off list).
    • Scale to zero between runs. No idle capacity tax.
    Free

    Get a feel

    £0 /month
    A free monthly capacity for mapping, testing, and load. Self-serve. No demo.
    • Mapping · testing · light load
    • 1 workspace
    • Account in minutes
    PAYG

    Scale on demand

    Per-second · published
    Top up when the free tier runs out. Same authoring, same APIs, same workspaces.
    • Everything in Free
    • Per-second pricing, no commit
    • Workspace API keys · CI/CD
    • MCP server access
    Enterprise · Closed beta

    Compliance assurance

    Monthly£800/ number
    Fortnightly£1,500/ number
    Weekly£2,500/ number
    Pick a cadence. Each scan produces a dated, signed report; every plan includes a founder-led monthly review call. First 5 firms.
    • 18-test EU AI Act catalogue
    • FCA PRIN 2A · Ofcom GC coverage
    • Founder-led monthly review call
    • 3-month minimum, breakable
    07 · Vs incumbents

    Same job. Different decade.

    Faster, cheaper, more honest about what's evidence and what's marketing.

    TotalPathIncumbents
    Time to first testAccount in minutes; first test the same hour.Procurement, contracts, kickoff. Weeks.
    Pricing modelFree tier, per-second PAYG, published rates.Custom quote after a demo.
    CapacityElastic concurrency, scale to zero.Fixed call capacity, committed annually.
    AuthoringDescribe the journey, import the map, run.Regex patterns and brittle scripted matchers.
    Modality coverageVoice + AVE + AI agents. One platform.Voice core; AI agents = separate product, separate contract.
    MappingFirst-class. Foundation of every test.Optional bolt-on, often manual.
    CI/CD & agent integrationREST + Python/Node SDKs + MCP. CLI Q3 2026."API available" usually = call your account manager.
    Compliance evidenceDated, signed, hash-anchored reports. Live beta."Assurance" in the brochure; rarely delivered as evidence.
    08 · FAQ

    Frequently asked.

    What does "real PSTN" actually mean?+
    Calls originate from genuine carrier infrastructure, dialled from real numbers, with real network jitter, codec, and timing. Simulator-only testing misses what only the network reveals - regional routing quirks, codec mismatch, jitter-induced prompt drop. The interesting bugs almost always live in the network, not the application.
    Do I need to learn a DSL or write regexes?+
    No. Describe the journey in plain terms or import a map; TotalPath generates the test, runs the calls, and reports. Power users drop into the REST API, the Python & Node SDKs (pip install nopaque / npm i @nopaque/sdk), or the MCP server for chat-driven runs.
    Where does compliance fit in?+
    Compliance is the fourth pillar, in closed beta for UK financial services right now. Pick a cadence per number: monthly £800, fortnightly £1,500, weekly £2,500. Every plan includes dated, signed reports against EU AI Act Art 50, FCA PRIN 2A, and Ofcom GC, plus a founder-led monthly review call. First 5 firms get founder access; capacity then opens up more broadly.
    How do I run TotalPath from CI or from my AI agent?+
    Three live surfaces, one upcoming. The REST API at api.nopaque.co.uk - workspace-scoped keys, OpenAPI 3.1 spec, generate clients in any language. The Python & Node SDKs - pip install nopaque / npm i @nopaque/sdk. The MCP server at mcp.nopaque.co.uk - 14 curated tools, so Claude / Cursor / any MCP-capable agent can drive the platform. The nopaque-cli shell wrapper lands Q3 2026.
    Pick your lane

    Map, test, and prove every voice journey.

    Self-serve
    Start free
    Account in minutes. Free tier every month. No demo required.
    Open the platform