Bitcoin Forum

Other => Beginners & Help => Topic started by: stevemcbuckeye on August 01, 2011, 08:41:38 PM



Title: Bitcoin developer API?
Post by: stevemcbuckeye on August 01, 2011, 08:41:38 PM
Hi all,

Is there an API available for receiving and/or sending bitcoin transactions on a website? PHP or otherwise?

Thanks!


Title: Re: Bitcoin developer API?
Post by: qwk on August 01, 2011, 08:46:45 PM
There is an API: https://en.bitcoin.it/wiki/API_reference_(JSON-RPC) (https://en.bitcoin.it/wiki/API_reference_(JSON-RPC))


Title: Re: Bitcoin developer API?
Post by: stevemcbuckeye on August 01, 2011, 08:48:43 PM
There is an API: https://en.bitcoin.it/wiki/API_reference_(JSON-RPC) (https://en.bitcoin.it/wiki/API_reference_(JSON-RPC))

Great. Thanks!


Title: Re: Bitcoin developer API?
Post by: rayvellest on March 14, 2013, 06:20:24 PM
Thanks! I was looking for that too! :)


Title: Re: Bitcoin developer API?
Post by: jdat on March 14, 2013, 07:51:15 PM
You can use the api from blockchain, so you won't need to run the bitcoind server.
http://blockchain.info/api/blockchain_wallet_api (http://blockchain.info/api/blockchain_wallet_api)


Title: Re: Bitcoin developer API?
Post by: rayvellest on March 19, 2013, 12:46:11 PM
You can use the api from blockchain, so you won't need to run the bitcoind server.
http://blockchain.info/api/blockchain_wallet_api (http://blockchain.info/api/blockchain_wallet_api)

What are the advantages of that against running your bitcoind on your own server?


Title: Re: Bitcoin developer API?
Post by: davout on March 19, 2013, 01:00:18 PM
What are the advantages of that against running your bitcoind on your own server?

Like most things it's a trade off, you need to trust blockchain to not feed you bogus data and you need to have your use case covered by their API.
Oh, and like any service they sometimes have outages, but on the other hand maybe you'll have outages of your own bitcoind.

If you can avoid running the client locally I'd advise to use the blockchain API.


Title: Re: Bitcoin developer API?
Post by: smokecamel on March 19, 2013, 01:05:03 PM
We will be using the "receive payments API" by blockchain.info (http://blockchain.info/api/api_receive) on our site, which simply forwards all transactions into our wallet.