Is it possible to get ticker of bitcoin.de using an api?

5

I did not found anything in the site. They have an api? It is for my Android App Bitcoin Paranoid.

Felipe

Posted 2013-04-15T01:43:27.117

Reputation: 1 511

This is the most-requested feature at the moment: https://getsatisfaction.com/bitcoinparanoid/topics/add_new_exchange_bitcoin_de

But I can't find a way to get the value...

Felipe 2013-04-18T02:48:29.443

Answers

1

You could just parse the website. For example to get the current euro and us dollar prices:

curl -s https://www.bitcoin.de/de | sed -n '/EUR/s%.*[^0-9]\([0-9]\+\)\(,\)\([0-9]\+\).*%\1.\3%p'

curl -s https://www.bitcoin.de/de | sed -n '/USD/s%.*[^0-9]\([0-9]\+\)\(,\)\([0-9]\+\).*%\1.\3%p'

erik

Posted 2013-04-15T01:43:27.117

Reputation: 536

0

They do have an API now. To get the the recent trades you could use the showPublicTradeHistory API endpoint at: https://api.bitcoin.de/v1/trades/history.

powtac

Posted 2013-04-15T01:43:27.117

Reputation: 385