TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What payment system are you using?

8 pointsby trengulalmost 11 years ago
We almost finished our startup and currently we need to choose a payment system, that will be easy to use, have a small commission, easy to implement (have a good and easy API) and can accept credit cards in USA, Europe and if possible Asia (China, Japan). What payment system are you using? What are advantages/disadvantages? Thanks in advance

3 comments

dangrossmanalmost 11 years ago
For making the actual charges, a merchant account from an ISO, currently Vantage Card [1]. I pay interchange plus (0.04% + $0.10) per transaction. That&#x27;s the fee charged by Visa&#x2F;MasterCard to the processor, plus four hundredths of a percent and a dime. For about a quarter of my volume which are debit&#x2F;check cards used as credit, that&#x27;s just 0.09% + $0.31. For the rest, it probably averages around 1.6-2%, far less than the 2.9% flat rate you&#x27;ll get offered by flashy payment startups.<p>I use Authorize.net as a payment gateway for that account [2]. If you do look at merchant account providers, they&#x27;ll typically set you up with a gateway, you don&#x27;t need to choose and sign up for one yourself. Just watch that they don&#x27;t use it as a way to add on more than nominal fees.<p>To actually hook everything up to my websites, I use Spreedly [3]. They&#x27;re the best thing to happen to payments in years. Spreedly is a single API for 66 different gateways and payment providers, meaning you code against Spreedly and can switch payment companies any time you want without changing any code. They&#x27;re also a PCI Level 1 Certified card vault for storing payment information to charge again in the future, for e.g. running a SaaS business.<p>They offer a pass-thru option where you point the payment form on your website to their URL, and they return the visitor to your page with a token attached that you can then use via their API to make charges, meaning no cardholder data ever touches your servers. That means no on-site PCI audits or any of the other nasty stuff required if you store cards yourself.<p>1: <a href="http://www.vantagecard.com/" rel="nofollow">http:&#x2F;&#x2F;www.vantagecard.com&#x2F;</a><p>2: <a href="http://www.authorize.net/" rel="nofollow">http:&#x2F;&#x2F;www.authorize.net&#x2F;</a><p>3: <a href="https://spreedly.com/" rel="nofollow">https:&#x2F;&#x2F;spreedly.com&#x2F;</a>
评论 #8026083 未加载
chatmastaalmost 11 years ago
I would recommend Chargebee (www.chargebee.com). They provide a layer on top of a dozen different backends, including Stripe, and handle all of the annoying subscription logic you don&#x27;t want to write code for.<p>The advantage of Chargebee is that you are not dependent on one backend or merchant provider, and can always swap it out for another if you get booted or want to try something else.
hashtagalmost 11 years ago
<a href="https://stripe.com/" rel="nofollow">https:&#x2F;&#x2F;stripe.com&#x2F;</a>
评论 #8024038 未加载
评论 #8024332 未加载
评论 #8024052 未加载