₿ Coinbin.org

A Human–Friendly API Service for Crypto Currency Information.

This service provides machine (and human) friendly JSON data for all known crypto–currencies. All {{ coins|length }} active & known coins are supported.

Historical data, exchange rates, conversion ratios, and value conversion endpoints are all available, free of charge. Data is refreshed every five minutes.

There is no rate limit. There never will be.

Example API Endpoints

$ curl https://coinbin.org/lbc
{{ lbc.data.decode('utf-8') }}
      

$ curl https://coinbin.org/lbc/42.01
{{ lbc_42.data.decode('utf-8') }}
      

$ curl https://coinbin.org/lbc/to/sc
{{ lbc_sc.data.decode('utf-8') }}
      

$ curl https://coinbin.org/lbc/42.01/to/sc
{{ lbc_42_sc.data.decode('utf-8') }} 

$ curl https://coinbin.org/lbc/history
{
  "history": [
    {
      "timestamp": "2017-08-24T04:00:55.932092Z",
      "value": 0.3404,
      "value.currency": "USD",
      "when": "today"
    }, ...

... {
      "timestamp": "2016-07-12T04:01:09.167162Z",
      "value": 0.239634,
      "value.currency": "USD",
      "when": "Jul 12 2016"
    }
  ]
}

This endpoint returns up to four years of daily USD data, on any given coin.

Pro Version

We're collecting historical data, moving forwardWe may backfill our historical data as well, if customers interest is high., every ten minutes (instead of daily). If you'd like access to this data, send us an email. We accept payment in coins.

Experimental (e.g. fun) Endpoints

Prediction of BTC Price (using machine learning)

 

Note — This information is presented for informational purposes only, and is not recommended for making actual trading decisions.

$ curl https://coinbin.org/btc/forecast
{{ lbc_forecast.data.decode('utf-8') }} 

Full List of Supported Coins (Ordered by Rank)

$ curl https://coinbin.org/coins
{
  "coins": [{% for coin in coins %}
    "{{ coin['ticker'] }}":
      {{ coin|tojson }},{% endfor %}
  ]
}
      

More Resources