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: Recommended way to receive customer payments when just starting up?

10 pointsby dxjonesalmost 16 years ago
What do YC startups recommend?<p>PayPal? Google Checkout? Credit Card? (merchant account), Other?<p>Which provides the minimum hassles, delays, transaction fees, etc.? Which do customers prefer?<p>Any positive or negative recommendations based on experience would be much appreciated.

9 comments

ScottWhighamalmost 16 years ago
When I started <a href="http://www.learnitfirst.com/" rel="nofollow">http://www.learnitfirst.com/</a> originally, we only accepted PayPal. I did it this way because getting a merchant account seemed like a big deal+hassle (at the time). After we integrated PayPal, we added Google Checkout which was a collosal waste of time. We now accept credit cards directly.<p>I'd say that my customers 10:1 prefer to pay by credit card. If I didn't offer credit cards as an option, I figure I would have 20-40% fewer sales. That being said, get up and running first and foremost - that's what I think. You can always add credit cards. I think PayPal, for my customers, is an important option. Since it was the easiest of all to implement, I'd say start with it.
评论 #660955 未加载
评论 #660833 未加载
jbralmost 16 years ago
It matters a whole lot what sort of payments you need to take. Is your payment model a sale (one-time transaction) or recurring billing?<p>If you're going to take credit cards and/or do recurring billing:<p>I've built two recurring billing payment systems (braintree and paypal express checkout) and maintained a third (paypal payflow pro gateway) and am most impressed with braintree's api thus far. <a href="http://braintreepaymentsolutions.com/" rel="nofollow">http://braintreepaymentsolutions.com/</a> My braintree-based system hasn't gone live yet, so I can't say anything about long-term service, but their api was far more sane than the other two. That said, when we added express checkout to the payflow pro gateway, purchase rates increased substantially.<p>There are monthly minimums with braintree and a good bit of paperwork, but being able to directly take credit cards might add some degree of "seriousness" in the consumer's eyes.<p>If you're rolling on rails, you might want to check out <a href="http://railskits.com/saas/" rel="nofollow">http://railskits.com/saas/</a> (although I have no personal experience with them) and <a href="http://www.activemerchant.org/" rel="nofollow">http://www.activemerchant.org/</a> (a payment library extracted from shopify).<p>If you're just doing one-time sales, you have a lot more options and the accounting is a heck of a lot easier.
评论 #661347 未加载
aaroneousalmost 16 years ago
You can seamlessly accept credit cards and use PayPal as your backend processor. To your customer, it looks like you jumped through all of the hoops of a merchant account, but you're really just interacting w/ PayPal's API.<p>They also provide a virtual terminal so you can accept credit card payments via phone//fax.<p>I think they call it website payments pro and it costs ~$30/mo depending on volume.
评论 #661449 未加载
jwtalmost 16 years ago
PayPal is by far the most cost-effective way (in terms of % rates) to get up and running - compared to the time and costs involved in setting up a merchant account/payment processor.<p>As Aaroneous mentioned- Paypal Website Payments Pro allows you to process paypal payments and credit card charges invisibly in the background (there is no redirect to Paypal).<p>The processing fees/cost economics of establishing a merchant account/processor definitely make sense however once you're processing several $k/month.
Travisalmost 16 years ago
In my startup (<a href="http://industrialinterface.com" rel="nofollow">http://industrialinterface.com</a>), we started by manually creating invoices in Paypal and emailing them out. That got lukewarm response.<p>I'm the lead dev, so I buckled down and figured out the merchant stuff. There can be 1-2 weeks worth of delays in getting your merchant account, but our admin guy said it was pretty straightforward. Took me about a day or 2 to figure out the response codes and to program the cc processing.<p>In short, take the jump and just process your own CCs (assuming that you have the legal structure in place so that you can get a merchant account. If not, use the Paypal API). Took about 2 days of learning and coding to figure out cc processing (and the Authorize.net interface ain't the greatest).<p>Fees are all about the same, so unless your margins are under a percent, don't worry about the fees. And if your margins are that low, rethink your business model ;)
评论 #660869 未加载
oomkilleralmost 16 years ago
I would work on a relationship with a bank, and get a merchant account. There are many providers that offer low enough rates for a startup. One that I heard of was Merchant Plus. Just get someone that supports authorize.net and you can't go wrong. This might take a little time, so I would recommend using Paypal AND Amazon payments WHILE you're getting this setup, since they seem to be easier to implement. I WOULD NOT however start with these initially, and not put any effort into a merchant account. You WILL need a merchant account eventually (if you're successful), so you need to already be working on it.
jbralmost 16 years ago
Another note if you're doing recurring billing: Check with your payment provider if you can get your customer payment data out ever. At my previous startup, we were locked into PayPal because they wouldn't release the consumer CC#s and it's never good for business to have to ask your customers to input their payment info a second time (attrition is inevitable). This time, we did a bit more research and our two top payment services (braintree and trustcommerce) both allowed full data portability (with a fee).
noodlealmost 16 years ago
i don't like paypal much, so i'd probably use amazon's FPS<p><a href="http://aws.amazon.com/fps/" rel="nofollow">http://aws.amazon.com/fps/</a>
评论 #661289 未加载
codemechanicalmost 16 years ago
<a href="http://www.codelathe.com/blog/index.php/2009/06/14/a-brief-comparison-of-internet-payment-options/" rel="nofollow">http://www.codelathe.com/blog/index.php/2009/06/14/a-brief-c...</a>