> ## Documentation Index
> Fetch the complete documentation index at: https://blogs.persistence.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Outbound at Scale: How Persistence Powers 100,000+ Simultaneous Calls

> What it takes to run high-volume AI outbound campaigns reliably — and the infrastructure decisions that separate Persistence from everyone else.

<div className="p-frame">
  <div role="banner" className="p-article-hero p-hatch">
    <div className="p-article-eyebrow"><strong>Product</strong><span>PRODUCT RELEASE</span><span>·</span><span>7 min</span></div>
    <h1 className="p-article-title">Outbound at Scale: How Persistence Powers 100,000+ Simultaneous Calls</h1>
    <p className="p-article-meta">Persistence Team · July 14, 2026</p>
  </div>

  <div className="p-article-grid">
    <div role="complementary" className="p-toc" aria-label="On this page">
      <a href="/">← Back to Blog</a><p className="p-toc-label">On this page</p>
      <a href="#scale-requirements">What "scale" actually means for outbound voice AI</a>
      <a href="#telephony-infrastructure">Telephony infrastructure: what's under the hood</a>
      <a href="#spam-labeling">Spam labeling: the silent call killer</a>
      <a href="#batch-calling-and-scheduling">Batch calling, scheduling, and rate limiting</a>
      <a href="#analytics">Post-call analytics at scale</a>
    </div>

    <div role="article" className="p-article">
      <div role="navigation" aria-label="Breadcrumb"><a href="https://persistence.dev">Persistence</a> / <a href="/">Blog</a> / Product</div>

      <div className="p-cover">
        <img src="https://mintcdn.com/persistence-76f2dd8d/6yn0kvI4pGQtJLa0/images/blog/outbound-calling-scale/cover.svg?fit=max&auto=format&n=6yn0kvI4pGQtJLa0&q=85&s=f695d5ecdc77407f8120b0c4a3416080" alt="Outbound at Scale: How Persistence Powers 100,000+ Simultaneous Calls cover illustration" width="1200" height="675" data-path="images/blog/outbound-calling-scale/cover.svg" />
      </div>

      <div role="complementary" className="p-takeaways">
        <p className="p-takeaways-title">Key takeaways</p>

        <ul>
          <li>Most voice AI platforms demo with 10, 100, maybe 1,000 concurrent calls.</li>
          <li>Persistence operates direct carrier interconnects in the US, EU, and APAC — we are not reselling another provider's SIP trunking.</li>
          <li>Outbound AI calling at scale runs into a serious problem that most platforms don't discuss: spam labeling.</li>
          <li>Persistence's outbound orchestration layer gives you fine-grained control over call scheduling.</li>
        </ul>
      </div>

      ## What "scale" actually means for outbound voice AI

      Most voice AI platforms demo with 10, 100, maybe 1,000 concurrent calls. Real enterprise outbound campaigns — insurance renewal notices, debt collection, appointment confirmations, political surveys, retail promotions — run at 10,000–100,000 simultaneous calls. At that volume, any platform weakness becomes a critical failure. Latency spikes that are invisible at 100 calls cause cascading degradation at 50,000. API rate limits that never trigger in testing block calls in production. Telephony infrastructure that works in the US silently fails for international dialing. Persistence is the only platform purpose-built for this scale from the ground up.

      <Frame caption="What this guide covers">
        <img src="https://mintcdn.com/persistence-76f2dd8d/6yn0kvI4pGQtJLa0/images/blog/outbound-calling-scale/graphic-1.svg?fit=max&auto=format&n=6yn0kvI4pGQtJLa0&q=85&s=7b0526c335abc819f5b2dfaad3e1b1f1" alt="Overview of Outbound at Scale: How Persistence Powers 100,000+ Simultaneous Calls" width="760" height="190" data-path="images/blog/outbound-calling-scale/graphic-1.svg" />
      </Frame>

      ## Telephony infrastructure: what's under the hood

      Persistence operates direct carrier interconnects in the US, EU, and APAC — we are not reselling another provider's SIP trunking. This direct carrier relationship gives us three advantages: lower per-minute costs that we pass to customers, higher call completion rates because our numbers carry better carrier reputation scores, and priority handling during carrier congestion events. Bland AI and Retell AI both use commodity SIP trunking providers, which means their call quality and completion rates are dependent on that provider's infrastructure decisions and capacity.

      ## Spam labeling: the silent call killer

      Outbound AI calling at scale runs into a serious problem that most platforms don't discuss: spam labeling. Mobile carriers and third-party services like STIR/SHAKEN and First Orion flag numbers with unusual call patterns as "Spam Likely," causing a significant percentage of outbound calls to be rejected or ignored. Persistence manages a large pool of verified, warmed phone numbers with call pattern diversity algorithms that keep numbers out of spam databases. We actively monitor number reputation across all major carriers and rotate flagged numbers automatically. The result: our customers see 15–25% higher answer rates on outbound campaigns compared to competitors running off commodity number pools.

      ## Batch calling, scheduling, and rate limiting

      Persistence's outbound orchestration layer gives you fine-grained control over call scheduling. You can define call windows by timezone (never call before 8am or after 9pm local time), set per-campaign concurrency limits, and configure retry logic with customizable backoff curves. Our batch calling API accepts lists of up to 500,000 contacts and distributes calls across your configured time windows automatically. You can monitor campaign progress in real time, pause and resume calls, and pull granular analytics — connection rate, transfer rate, call outcome distribution — at any point during the campaign.

      ## Post-call analytics at scale

      At 100,000 calls, you cannot listen to individual recordings to understand what's working. Persistence's post-call analysis pipeline runs on every call automatically: it extracts call outcomes (appointment scheduled, objection raised, callback requested), classifies sentiment, flags calls where the AI failed to handle a question, and surfaces these insights in an aggregate dashboard. You can drill into any call from the dashboard, read a full transcript, listen to audio with timestamp navigation, and mark calls for agent retraining. This closed loop between production calls and model improvement is what keeps Persistence agents getting better over time.

      ## Frequently asked questions

      <AccordionGroup>
        <Accordion title="What &#x22;scale&#x22; actually means for outbound voice AI?">
          Most voice AI platforms demo with 10, 100, maybe 1,000 concurrent calls. Real enterprise outbound campaigns — insurance renewal notices, debt collection, appointment confirmations, political surveys, retail promotions — run at 10,000–100,000 simultaneous calls.
        </Accordion>

        <Accordion title="What should teams know about telephony infrastructure: what's under the hood?">
          Persistence operates direct carrier interconnects in the US, EU, and APAC — we are not reselling another provider's SIP trunking. This direct carrier relationship gives us three advantages: lower per-minute costs that we pass to customers, higher call completion rates because our numbers carry better carrier reputation scores, and priority handling during carrier congestion events.
        </Accordion>

        <Accordion title="What should teams know about spam labeling: the silent call killer?">
          Outbound AI calling at scale runs into a serious problem that most platforms don't discuss: spam labeling. Mobile carriers and third-party services like STIR/SHAKEN and First Orion flag numbers with unusual call patterns as "Spam Likely," causing a significant percentage of outbound calls to be rejected or ignored.
        </Accordion>

        <Accordion title="What should teams know about batch calling, scheduling, and rate limiting?">
          Persistence's outbound orchestration layer gives you fine-grained control over call scheduling. You can define call windows by timezone (never call before 8am or after 9pm local time), set per-campaign concurrency limits, and configure retry logic with customizable backoff curves.
        </Accordion>
      </AccordionGroup>

      ## Try Persistence

      <Card title="Build reliable voice AI with Persistence" href="https://persistence.dev" cta="Try Persistence" arrow>
        Design, test, and deploy production-ready voice agents.
      </Card>

      ## Continue reading

      <Columns cols={2}>
        <Card title="Build with us: Deploy Your First AI Voice Agent in 30 Minutes" href="/blog/build-voice-agent-30-minutes" arrow />

        <Card title="Build with us: Automate Patient Appointment Scheduling with Persistence AI" href="/blog/automate-patient-scheduling" arrow />

        <Card title="Build with us: Connect Persistence AI Voice Agents to Your CRM" href="/blog/integrate-crm-voice-agents" arrow />
      </Columns>
    </div>

    <div className="p-rail" aria-hidden="true" />
  </div>

  <div role="contentinfo" className="p-footer"><div className="p-footer-brand"><strong>Persistence</strong><p>Automate your calls. Connect with us.</p></div><div className="p-footer-links"><div><strong>Product</strong><a href="https://persistence.dev">Home</a><a href="https://persistence.dev/pricing/">Pricing</a></div><div><strong>Solutions</strong><a href="https://persistence.dev/solutions/">All solutions</a></div><div><strong>Feature</strong><a href="https://persistence.dev/feature/">All features</a></div><div><strong>Resources</strong><a href="/">Blog</a><a href="https://docs.persistence.dev">Docs</a></div></div></div>
</div>
