Real examples from the codebase showing how valuations are calculated, listings are matched, and the platform is used. No fabricated testimonials—just actual implementation patterns.
These are actual test cases included in the codebase (app/admin/import-listings/page.tsx). They demonstrate how the valuation engine processes different business types.
Food Service • Austin, TX
Analysis: Asking price significantly below calculated range. Potential asset sale or distressed situation. SDE appears high relative to revenue (72% margin unusual for coffee shop).
Full-Service Dining • Dallas, TX
Analysis: Extremely high SDE margin (80% of revenue) is unrealistic for full-service dining. Likely data error or asset-only sale. Normal restaurant SDE margins: 10-20%.
Note: These are test cases with intentionally unrealistic financials to validate edge case handling. Real-world valuations would flag these margin inconsistencies in the confidence scoring.
Our matching engine runs nightly (/api/match/run) to score buyer preferences against listings. Matches require ≥40 points to be stored.
Threshold: Only matches scoring ≥40 are stored in the database and shown to buyers. This prevents noise from low-quality matches.
Real quota enforcement from /lib/utils/plan-limitations.ts. These are not marketing numbers—they're enforced at API level with violation logging.
| Feature | Free | Beta | Starter | Professional | Enterprise |
|---|---|---|---|---|---|
| Daily Analyses | 2 | 20 | 10 | 50 | Unlimited |
| Monthly Analyses | 10 | 100 | 50 | 500 | Unlimited |
| Questions per Hour | 2 | 10 | 5 | 20 | 50 |
| Follow-ups (each type) | 2 | 5 | 10 | 50 | Unlimited |
| PDF Export | ✗ | ✓ | ✓ | ✓ | ✓ |
| Advanced Metrics | ✗ | ✓ | ✗ | ✓ | ✓ |
| Conversation History | ✗ | ✓ | ✓ | ✓ | ✓ |
get_user_current_usage for quota checksusage_violations table with IP + user agentTo be transparent about what this page does NOT contain:
This page shows actual code examples and implementation details. When we have real case studies with user permission, we'll add them here.
Free tier: 2 daily analyses, 10 monthly. See the algorithm in action.
Get Started