All Projects → lionsharecapital → Lionshare Api

lionsharecapital / Lionshare Api

Realtime cryptocurrency API

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Lionshare Api

Cryptocurrency Analysis
Analysis and visualisation of the cryptocurrency market
Stars: ✭ 264 (-0.75%)
Mutual labels:  ethereum, bitcoin
Ccxt Rest
Open Source Unified REST API of 100+ Crypto Exchange Sites (18k+ docker pulls) - https://ccxt-rest.io/
Stars: ✭ 210 (-21.05%)
Mutual labels:  ethereum, bitcoin
Cryptoview
Elegant portfolio management for multi-exchange traders
Stars: ✭ 206 (-22.56%)
Mutual labels:  ethereum, bitcoin
Blockchainwallet Crypto
比特币、以太坊公私钥生成以及签名,长时间不维护可移步 https://github.com/QuincySx/ChainWallet
Stars: ✭ 183 (-31.2%)
Mutual labels:  ethereum, bitcoin
Time Series Machine Learning
Machine learning models for time series analysis
Stars: ✭ 261 (-1.88%)
Mutual labels:  ethereum, bitcoin
My Wallet V3 Frontend
Blockchain Web Wallet Frontend
Stars: ✭ 192 (-27.82%)
Mutual labels:  ethereum, bitcoin
Nicehashquickminer
Super simple & easy Windows 10 cryptocurrency miner made by NiceHash.
Stars: ✭ 211 (-20.68%)
Mutual labels:  ethereum, bitcoin
Awesome Decentralized Papers
Influential papers in decentralized systems (cryptocurrencies, contracts, consensus, etc.)
Stars: ✭ 179 (-32.71%)
Mutual labels:  ethereum, bitcoin
Cryptotrader
A cryptocurrency trader for all famous exchanges
Stars: ✭ 228 (-14.29%)
Mutual labels:  ethereum, bitcoin
Nemosminer
NemosMiner multi algo profit switching NVIDIA miner
Stars: ✭ 224 (-15.79%)
Mutual labels:  ethereum, bitcoin
Crypto Signal
Github.com/CryptoSignal - #1 Quant Trading & Technical Analysis Bot - 3,100+ stars, 900+ forks
Stars: ✭ 3,690 (+1287.22%)
Mutual labels:  ethereum, bitcoin
Coinapi Sdk
SDKs for CoinAPI
Stars: ✭ 238 (-10.53%)
Mutual labels:  ethereum, bitcoin
Tbtc
Trustlessly tokenized Bitcoin on Ethereum ;)
Stars: ✭ 182 (-31.58%)
Mutual labels:  ethereum, bitcoin
Go Quote
Yahoo finance/Google finance/Coinbase/Bittrex/Binance/Tiingo historical quote downloader library and cli written in golang
Stars: ✭ 198 (-25.56%)
Mutual labels:  ethereum, bitcoin
Unstoppable Wallet Ios
A secure and decentralized Bitcoin and other cryptocurrency wallet for iPhone. Supports Bitcoin, Ethereum, EOS, Binance Chain, Bitcoin Cash, DASH, ...
Stars: ✭ 180 (-32.33%)
Mutual labels:  ethereum, bitcoin
Blockchain Stuff
Blockchain and Crytocurrency Resources
Stars: ✭ 2,549 (+858.27%)
Mutual labels:  ethereum, bitcoin
Study Blockchain Referrence
区块链学习路上的一些资料作为参考
Stars: ✭ 172 (-35.34%)
Mutual labels:  ethereum, bitcoin
Cointop
A fast and lightweight interactive terminal based UI application for tracking cryptocurrencies 🚀
Stars: ✭ 2,912 (+994.74%)
Mutual labels:  ethereum, bitcoin
Introducing Ethereum And Solidity
Programming examples from the book.
Stars: ✭ 221 (-16.92%)
Mutual labels:  ethereum, bitcoin
Merkletreejs
🌱 Construct Merkle Trees and verify proofs in JavaScript.
Stars: ✭ 238 (-10.53%)
Mutual labels:  ethereum, bitcoin

api.lionshare.capital

API that powers Lionshare by providing both historical (REST) and realtime time (websocket) cryptocurrency market data. The data is sourced from GDAX, Poloniex, and Coinmarketcap.

Build with Node, Koa 2, uws and Redis.

API Endpoints

Prices

GET https://api.lionshare.capital/api/prices

Params

  • period: hour | day | week | month | year

Returns historic prices for supported digital currencies

Example response:

{
  "data": {
    "BTC": [924.2, 924.63, 923.82, 923.02, 924.82, ...],
    "ETH": [10.74, 10.8, 10.79, 10.82, 10.82, 10.84, 10.78, ...],
    "LTC": [3.88, 3.86, 3.85, 3.85, 3.86, 3.86, 3.84, ...]
    ...
  }
}

Markets

GET https://api.lionshare.capital/api/markets

Returns market capitalization data

Example response:

{
  "data": {
    "BTC": 14718750986, 
    "ETH": 943628626,
    "LTC": 188560718,
    ...
  }
}

Development

Redis is required for caching and a valid connection URL should be set to REDIS_URL environment variable before running the development server. .env is loaded on startup. Make sure that you have redis installed and running (redis-server) for local development.

yarn
yarn dev

Deploy

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].