TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Stripe for 10k plus transactions?

9 点作者 msencenb超过 8 年前
My next saas product is going to be annual only, b2b with a price of 10k or more a year.<p>I know Stripe has a theoretical limit above this; however I&#x27;m concerned that credit card companies will often trigger alarms for such high charges.<p>What are the most common ways to collect big, yearly contracts? Paper checks? Stripe? Some sort of bank transfer API?

3 条评论

eric_bullington超过 8 年前
&gt; What are the most common ways to collect big, yearly contracts?<p>Yep, at least in the US, paper checks for some (still!) and wire transfer for others. You send them an invoice, and they send you an (actual, paper) check or make a wire payment to the account number you put in the invoice. Both should be pretty much free, if you have a decent bank (although some banks will charge a few dollars now for incoming domestic wire transfers).<p>I think for a yearly charge of $10,000+, it&#x27;s probably worth the pain in the ass factor to invoice the charge, particularly given how much you&#x27;ll save (about $300 if you use Stripe, more for others, assuming 10,000 charge). Most banks have banking apps now that let you cash checks using the app, so if you really get going with 10,000 checks flowing in by the batch, you can hire some one to help deposit them via app or dropping them by a bank branch. Not a bad problem to have, if it happens.<p>Just realize that most companies operate on 60 or 90 day terms, and some even more. You can often negotiate for 30-day terms if they really like you&#x2F;your product and you&#x27;re firm about it. Just be sure you factor this into your cash flow. And have a process in place for what to do if you don&#x27;t receive payment by then.<p>Actually, regarding Stripe, and I may be wrong about this, but I don&#x27;t think most companies will let you set up a recurrent yearly credit card payment of 10,000 dollars, at least not without going high up the corporate food chain. If that&#x27;s the case, you&#x27;d need to break it into a monthly charge to go the Stripe option.
评论 #12539880 未加载
dangrossman超过 8 年前
Yes, paper checks or bank transfers (ACH in the US, or wire transfers you&#x27;re international). You send an invoice, you get paid 30-90 days later.<p>Stripe can help you with doing ACH programmatically, if you want to offer an online payment option: <a href="https:&#x2F;&#x2F;support.stripe.com&#x2F;questions&#x2F;accepting-ach-payments-with-stripe" rel="nofollow">https:&#x2F;&#x2F;support.stripe.com&#x2F;questions&#x2F;accepting-ach-payments-...</a><p>There are a few reasons transactions of this size are almost never done by credit card:<p>* Cost ($300 for CC, $0.25-$5 for ACH, free for checks)<p>* Fraud risk: Someone buys your product with a stolen card or without their boss&#x27;s permission, they can reverse the charge and you have little to no recourse.<p>* Chargeback rate risk: You need to have less than 1% of your processing volume be reversed to accept major credit cards. With large transactions, a single reversal can put you over the limit.<p>* Large tickets, and annual billing, are both red flags when underwriting a business for credit card processing.<p>A business with very large transactions is risky to take on for the merchant account provider, so you may not be able to find one, may not get reasonable processing rates, may be subject to risk reserves that create cashflow issues, etc.<p>If you go bankrupt and don&#x27;t fulfill your contract to 20 clients, and all 20 charge back their payment to you, it&#x27;s the merchant account provider that&#x27;s now lost $200K they can&#x27;t recoup. They don&#x27;t want that.<p>If you have a major outage and 10 clients charge back their payments, a processor needs $10 million in good charges to balance that $100K in bad charges from you just to stay below their mandated 1% chargeback rate by Visa&#x2F;MC. That&#x27;s too much to ask of many local banks and other MAPs.
pjg超过 8 年前
Digital Checks sound like the way to go for this. Multiple YC companies like cleanly.com stilt.co are already using them. Both for collecting funds as well as disbursing funds. Unlike ACH there are minimal on-boarding issues and UI&#x2F;UX is much friendlier than ACH. Feel free to try it out at <a href="https:&#x2F;&#x2F;www.checkbook.io" rel="nofollow">https:&#x2F;&#x2F;www.checkbook.io</a><p>Also there&#x27;s an API and integrations with Wordpress and Magento. Price is a fixed $1&#x2F;Check. No percentages!<p>Disclaimer: I work for checkbook.io