I'm new to Bitcoins, but think they are pretty amazing.

I'd love to offer Bitcoin payments on my website, but any API/Manual on how to achieve this is apparently currently lacking online.

Does anyone have any resources/code samples (c# preferably) on how I can automatically receive bitcoin payments?

I can get the current price from Mt Gox:

https://mtgox.com/code/data/ticker.php

Which allows me to set my products price at n Bitcoins, but as far as detecting when you have received a payment and from who, I'm a bit lost. I would like the purchasing process to be completely automated if possible, like Paypal IPN.

link|improve this question

1  
Tom, did you get anywhere with this? I'm sure there are a lot of people, myself included, who want to do similar in .NET land. – Mr. Flibble Jun 9 '11 at 23:26
@Mr Flibble I haven't started yet, had to put it back a lot, but when I do tackle it I will create a blog post with how it's done and link it in here for you :) – Tom Gullen Jun 10 '11 at 8:09
You might find my C# BitCoin client useful: bitcoinsharp.googlecode.com also available via NuGet: nuget.org/List/Packages/BitCoinSharp (shameless plug) – Nathan Baulch Jun 14 '11 at 19:41
Note: there is a bitcoin stackexchange proposal where that kind of question will be welcome. – Stéphane Gimenez Jul 29 '11 at 15:37
feedback

1 Answer

up vote 4 down vote accepted

You have a couple options from what I've discovered on my own.

  1. Use a dedicated provider such as bitcoinpayflow.com which comes with a regular Web API.

  2. Run your own bitcoin daemon and use RPC to communicate with it. Every N minutes, check to see if a payment as been received and has N confirmations (N can be whatever level of confirmation you are comfortable with). When a customer selects on your site that s/he wants to pay via BTC, you can generate a new address (or select an unused one from a large pool of addresses that you've already created), instructing the user to send the payment of $XYZ to that address. Have them enter their email, or relevant contact information, and save into the database. See also: https://en.bitcoin.it/wiki/Merchant_Howto#Automated

link|improve this answer
This is pretty much right on the nose, but I thought I'd add that MyBitcoin.com is now defunct, so it's not really an option any more. – David Perry Aug 11 '11 at 5:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.