惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
SegmentFault 最新的问题
N
Netflix TechBlog - Medium
Vercel News
Vercel News
F
Fortinet All Blogs
量子位
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MongoDB | Blog
MongoDB | Blog
Y
Y Combinator Blog
GbyAI
GbyAI
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
月光博客
月光博客
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
Hugging Face - Blog
Hugging Face - Blog
D
DataBreaches.Net
H
Help Net Security
阮一峰的网络日志
阮一峰的网络日志
D
Docker
WordPress大学
WordPress大学

Hacker News: Ask HN

The New Window Delete ChatGPT Atlas Spyware Tell HN: Qwen Free Tier Is Discontinued Ask HN: SeedLegals Partnerships in London, worth it? Ask HN: How to highlight talent from untraditional backgrounds? Ask HN: We dont need a programming language now? Durable Object alarm loop: $34k in 8 days, zero users, no platform warning What if Time at the subatomic level has multiple arrows? How to add MidnightBSD Key to UEFI Secure Boot DBX? (Revoked and Forbidden Keys) Ask HN: What's your experience working at xAI as an AI tutor? Any engineers here with experience of clinical data standards? Ask HN: Who is using OpenClaw? Agent Skills for Software Test Automation Ask HN: Who needs contributors? Claude Code is thinking too much Ask HN: What Is the Big-O Order of a Jigsaw Puzzle? Ask HN: Stepping into a new role as a Senior, mentoring dos and dont's? Founder from Zurich heading to SF and Austin for the first time Hacker News No Manual Screenshots: I Built a Scalable Screenshot API Using Cloud Playwright Ask HN: Thought experiment: AGI giving us answers we don't like? Ask HN: I quit my job over weaponized robots to start my own venture 1% Vacancy, 81% Preleased: Where Midmarket Compute Deploys in 2026 Ask HN: Preferred pricing model for sound effects libraries? Copy of the email I sent to my undergraduate professors on Nov 30, 2025 Model API Performance | Hacker News Ask HN: Are open-weight LLMs the new offline encyclopedias? Valgrind 3.27 RC1 is out Claude Code OAuth down for >12 hours Ask HN: What's Better?–Tauri or Electron?
Ask HN: What pricing model works for high COGs side project?
onemiketwelv · 2026-04-17 · via Hacker News: Ask HN

So I've been working on this app that's a dashboard + taskbar widget for commute times. I made it for myself so I wouldnt have to search for it all the time by googling it. I was honestly surprised it didnt really exist but the reason is now obvious to me. It's because live traffic data is super expensive. Around $2.50 / 1k calls from my provider.

So each round trip route would cost around $4/month (2 calls per route * one call per hour * 24 hours * 30 days) This is quite a lot imo in raw costs, which doesn't even factor in my cut. I think in this day and age with so many free apis, your average person (myself included) would not think a simple traffic widget would cost ANYWHERE near that amount. On top of that, of course I wanted the udpate frequency configurable. Maybe some people want to have it update every 15 minutes. Unfortunately now we are generating x4 in costs. Factor in each user can add N routes, somebody could have 5 routes and now they're suddenly incuring $80! in spend. Which I'm sure _very_ few people would be willing to spend.

I originally thought I would just charge for usage so that the user would have incentives to tune down their usage. AKA I could put in an active hours feature so that they could put in only hours of their commute.

But then every single piece of pricing advice says to NOT taxi meter the users. And to be fair, despite the similar high cost nature of AI services, almost none of them at the consumer facing front charge per usage. They use the bucket of tokens method + overages. But honestly I think this is only viable for them because they are massivley subsidizing their users with VC money. If I remember correctly, the $20 plan many of them have would have to cost around $150 to break even.

I think it's the nature of these 2 levers of route count + frequency, which can generate such wildly amoutns of cost that makes it hard for me to imagine a world of a flat subscription plans.

Looking at other busiensses with comparable price dynamics, I found what I'm calling the "home security camera" model, where they charge a flat rate and +X per camera. Recently a large camera company moved to this because their flat annual subscription just wasnt working. IE charging the same for a user with 1 camera vs 10, and having to store 1080p vs 4k footage

What would you do in this situation? Sincerely confused