← Back to Blog
Engineering·11 min read·Mar 25, 2026

The Technology Dividend: How In-House AI Changes the Economics of Dental Software

When people hear that NexV costs $249 per month with unlimited users, the first question is always the same: what is the catch? There is no catch. NexV costs less because it is less expensive to run.

The price difference between NexV and traditional dental software vendors is not the result of aggressive discounting, venture-backed subsidies, or a stripped-down feature set. It is the result of architectural decisions that eliminate entire categories of cost that legacy platforms carry as permanent overhead.

How Can NexV Offer Dental Software for $249 Per Month?

NexV costs $249 per month because the platform is structurally cheaper to operate. In-house AI models run at $0.001 per scan instead of $0.50 to $2.00 through third-party licensing. Serverless AWS infrastructure scales to zero when idle. DynamoDB single-table design eliminates SQL licensing entirely. These are permanent architectural savings passed directly to practices.

We call this the technology dividend: the cost advantage that emerges when you build your own tools instead of licensing them, use infrastructure that charges by the millisecond instead of by the month, and design data models that eliminate entire vendor dependencies.

This is not about cutting corners. It is about eliminating middlemen. Every dollar a traditional vendor pays to a third-party AI company, a database licensor, or a legacy infrastructure provider is a dollar that gets passed to the practice as a higher monthly fee. NexV eliminates those intermediaries entirely.

What Is the Technology Dividend in Dental Software?

The technology dividend is the cost advantage that emerges when a dental software company builds its own AI models, uses serverless cloud infrastructure, and eliminates third-party licensing dependencies. Instead of paying middlemen for AI diagnostics, database licenses, and always-on servers, the vendor passes structural savings directly to practices as lower pricing.

The AI Cost Structure: In-House vs. Third-Party

The most dramatic cost difference in dental software is in AI diagnostics. Traditional vendors integrate third-party AI services that charge $0.50 to $2.00 per X-ray analysis. For a practice analyzing 40 radiographs per day, that is $20 to $80 per day, or $400 to $1,600 per month in AI costs alone.

NexV built its own diagnostic models. The AI engine runs on AWS SageMaker using serverless inference endpoints. When a radiograph is submitted for analysis, SageMaker spins up the model, runs the inference, and returns the result. The compute cost per scan is $0.001.

That is not a typo. One-tenth of a cent per scan, compared to $0.50 to $2.00 through a third-party service. The difference is 500x to 2,000x.

The cost gap exists for two reasons. First, NexV does not pay per-scan royalties to an external AI vendor. The model is trained, deployed, and operated entirely within NexV's infrastructure. Second, SageMaker serverless endpoints charge only for the compute time consumed during inference, not for keeping a GPU instance running 24/7.

How Much Does AI Dental Imaging Cost Per Scan?

Third-party dental AI services charge $0.50 to $2.00 per X-ray analysis. In-house models running on AWS SageMaker serverless endpoints cost approximately $0.001 per scan, which is 500x to 2,000x less expensive. The cost difference exists because in-house models carry no per-scan royalties, no data licensing fees, and no third-party margin on each inference.

What Is Serverless Dental Software?

Serverless dental software runs on cloud infrastructure that provisions compute resources only when a user takes an action and releases them immediately after. There are no always-on servers burning electricity when the practice is closed. The platform scales to zero during nights and weekends and scales back up instantly when the practice opens, so you pay only for actual usage.

SageMaker Serverless: $0 When Idle, $0.001 When Active

Traditional AI infrastructure requires always-on GPU instances. A single ml.g4dn.xlarge instance on AWS costs approximately $0.526 per hour, or $378 per month, regardless of whether it is processing scans or sitting idle. Most dental practices are closed 14 to 16 hours per day and two full days per week, which means a dedicated GPU instance is idle 70% of the time.

SageMaker serverless inference eliminates idle cost entirely. The endpoint exists in a dormant state when no requests are being processed. When a radiograph arrives, the endpoint provisions compute, runs the model, and releases the resources. The practice pays only for the seconds of compute consumed.

For a practice running 40 scans per day with an average inference time of 3 seconds, the daily compute cost is approximately $0.04. Monthly, that is $0.80. Compare that to $378 per month for a dedicated instance or $800 to $1,600 per month for a third-party AI service.

The serverless model also scales effortlessly. A single-location practice and a 50-location DSO use the same infrastructure. The endpoints provision additional compute automatically during high- volume periods and scale back to zero during off-hours. There is no capacity planning, no instance right-sizing, and no infrastructure management.

Third-Party AI Licensing: The Hidden Per-Scan Tax

Most dental software vendors do not build their own AI models. They license diagnostic capabilities from specialized AI companies and pass the cost through to practices, typically with a markup.

The third-party AI company charges the vendor $0.30 to $1.00 per scan. The vendor marks that up to $0.50 to $2.00 per scan and bills it to the practice. The practice pays for AI diagnostics on top of their per-seat software license, and neither the vendor nor the AI company has an incentive to reduce the per-scan price.

This is a structural cost that cannot be negotiated away. As long as the vendor depends on a third party for AI capabilities, the per- scan fee exists. The only way to eliminate it is to own the model outright, which requires the upfront investment of training and deploying your own detection models.

NexV made that investment. The result is a diagnostic engine that detects 31 pathology classes at a cost of $0.001 per scan. For details on how the model handles patient data privacy, see our post on the hidden data pipeline in dental AI.

Bedrock vs. Self-Hosted LLMs for Clinical Notes

AI diagnostics is not the only AI cost in dental software. Clinical note generation, treatment plan narratives, and patient communication drafts all use large language models. The question is how those models are accessed and priced.

Most vendors use commercial LLM APIs from third-party providers, paying per-token for every request. A clinical note generation call that processes a full appointment transcript might consume 2,000 to 4,000 tokens of input and generate 500 to 1,000 tokens of output. At typical API pricing, that costs $0.02 to $0.08 per note.

NexV uses AWS Bedrock, which provides access to foundation models with on-demand pricing that is significantly lower than commercial APIs. Bedrock also keeps all data within the practice's AWS environment, meaning clinical transcripts and patient information never leave the practice's infrastructure.

The cost advantage is meaningful at scale. A provider generating 20 clinical notes per day through a commercial API costs $0.40 to $1.60 per day. Through Bedrock, the same volume costs approximately $0.10 to $0.30 per day. Over a year, for a 5-provider practice, the savings on LLM costs alone reaches $1,000 to $3,000.

DynamoDB Single-Table Design vs. Traditional SQL

Database licensing is one of the largest hidden costs in traditional dental software. Legacy platforms built on Microsoft SQL Server, Oracle, or PostgreSQL with commercial extensions carry database licensing fees that range from $2,000 to $15,000 per server per year, depending on the edition and deployment model.

NexV uses DynamoDB with a single-table design pattern. There is no database license. DynamoDB charges per read and write operation, and the single-table design minimizes the number of operations required for each user action.

A typical patient chart lookup in a traditional SQL database might require 5 to 10 queries across multiple tables: patient demographics, treatment history, insurance information, appointment history, and clinical notes. In DynamoDB single-table design, that same operation is a single query that retrieves all related data in one request.

The cost per query on DynamoDB is $0.00000025 for a read request unit. Even a busy practice generating 50,000 reads per day pays approximately $0.38 per month in database costs. There is no license fee, no per-server charge, and no database administrator required to manage the infrastructure.

For multi-location deployments, the single-table design also simplifies multi-tenant architecture. Each practice's data is isolated by partition key, which means hundreds of practices can share the same table with complete data isolation and no cross-tenant access risk.

Why This Matters for Your Practice

The technology dividend is not an abstract concept. It translates directly into three concrete outcomes for practices:

  • Lower monthly cost.NexV's infrastructure costs a fraction of what legacy vendors pay to operate. That savings is passed through as a $249 flat fee instead of $500 to $700 per user.
  • No hidden transaction fees. Because AI inference, database operations, and API calls cost fractions of a cent, NexV does not need to add per-scan, per-claim, or per-statement surcharges. Everything is included.
  • Structural permanence. The cost advantage is architectural, not promotional. It does not expire after an introductory period. The infrastructure does not get more expensive as your practice grows. The savings are baked into the way the platform is built.

Traditional vendors cannot match this pricing without rebuilding their entire technology stack. They are locked into SQL database licenses, third-party AI contracts, and always-on server infrastructure. Those costs are fixed and recurring, and they define the pricing floor for every legacy platform. This is why per-seat pricing persists: vendors need to charge $500 to $700 per user to cover their structural overhead.

The Serverless Advantage: Why It Scales to Zero

A traditional dental software platform runs on dedicated servers that consume power, bandwidth, and license fees 24 hours a day, regardless of whether anyone is using the system. A practice that closes at 5 PM and reopens at 8 AM is paying for 15 hours of idle server time every night.

NexV runs on AWS Lambda, which executes code only when triggered by a user action. Between requests, the cost is literally zero. Weekend closures, holidays, and after-hours periods generate no infrastructure cost. The platform scales to zero automatically and scales back up instantly when the practice opens.

This is the fundamental difference between renting a server and buying compute by the millisecond. Renting a server is like leaving every light in the office on 24/7 because it is easier than installing motion sensors. Serverless is the motion sensor.

Not Cutting Corners. Eliminating Middlemen.

The natural skepticism when a product costs 80% less than competitors is that something must be missing. In NexV's case, what is missing is the overhead.

There is no third-party AI vendor taking $0.50 to $2.00 per scan. There is no SQL database license costing $10,000 per year. There is no always-on server farm burning electricity when the practice is closed. There is no middleware layer connecting five different tools that should have been one platform from the start.

Every one of those eliminated costs translates directly into a lower price for the practice. The technology dividend is not charity. It is engineering. And when migration is free because the platform can afford to absorb it, the migration tax that keeps practices locked into legacy vendors disappears entirely.

For a detailed comparison of how these savings affect total cost of ownership across different practice sizes, see our pricing page. And for practices evaluating the AI capabilities specifically, our security and infrastructure documentation covers the full architecture in detail.

Ready to see NexV in action?

Book a Demo