Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kennethreitz/coinbin.org
₿ A Human–Friendly API Service for Crypto Currency Information.
https://github.com/kennethreitz/coinbin.org
api bitcoin btc eth ethereum for-humans kennethreitz litecoin ripple
Last synced: 13 days ago
JSON representation
₿ A Human–Friendly API Service for Crypto Currency Information.
- Host: GitHub
- URL: https://github.com/kennethreitz/coinbin.org
- Owner: kennethreitz
- Created: 2017-08-23T00:43:00.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-04-12T19:26:20.000Z (over 2 years ago)
- Last Synced: 2024-10-22T22:55:16.391Z (21 days ago)
- Topics: api, bitcoin, btc, eth, ethereum, for-humans, kennethreitz, litecoin, ripple
- Language: Python
- Homepage: https://coinbin.org/
- Size: 7.98 MB
- Stars: 253
- Watchers: 31
- Forks: 33
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ₿ Coinbin.org
### The Human–Friendly API Service for Crypto Currency Information.
This free web service exists to provide information on "coins". Supports all crypto–currencies.
### Example API Endpoints
`$ curl https://coinbin.org/lbc`
```json
{
"coin": {
"name": "LBRY Credits",
"rank": "100",
"ticker": "lbc",
"value": 0.429737,
"value.currency": "USD"
}
}
```
`$ curl https://coinbin.org/lbc/42.01`
```json
{
"coin": {
"exchange_rate": 0.429737,
"value": 18.053251369999998,
"value.currency": "USD"
}
}
```
`$ curl https://coinbin.org/lbc/to/sc`
```
{
"coin": {
"exchange_rate": 61.98696034733942
}
}
```
`$ curl https://coinbin.org/lbc/42.01/to/sc`
```json
{
"coin": {
"exchange_rate": 61.98696034733942,
"value": 2604.072204191729,
"value.coin": "sc"
}
}
````$ curl https://coinbin.org/lbc/history`
```json
{
"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"
}
]
}
```## More Resources
- [Awesome Crypto Currency Tools & Algorithms (Guide)](https://github.com/kennethreitz/awesome-coins)