All Projects → ExodusMovement → coinmarketcap

ExodusMovement / coinmarketcap

Licence: MIT license
Price and market capitalization from coinmarketcap.com

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to coinmarketcap

swa-price-drop
Check for Southwest Airlines price drops for specific outbound and return flight numbers.
Stars: ✭ 14 (-80.82%)
Mutual labels:  price
CSGOItemDB
An API to retrieve accurate CS:GO prices for high- and low-tier items
Stars: ✭ 35 (-52.05%)
Mutual labels:  price
cloud-pricing-api
GraphQL API for cloud pricing. Contains over 3M public prices from AWS, Azure and GCP. Self-updates prices via an automated weekly job.
Stars: ✭ 281 (+284.93%)
Mutual labels:  price
m2.Price
Magento2. Rounding Price to Prettier Value for Multi-Currency Stores.
Stars: ✭ 60 (-17.81%)
Mutual labels:  price
react-local-currency
💵 💴Shows the price of your services in the customer's currency 💶 💷
Stars: ✭ 21 (-71.23%)
Mutual labels:  price
price-per-unit
An Android app that helps you compare prices of similar products 💵 💰
Stars: ✭ 19 (-73.97%)
Mutual labels:  price
bitcoin-stock-to-flow
Stock-to-Flow ratio and price for Bitcoin
Stars: ✭ 19 (-73.97%)
Mutual labels:  price
bitprice-ios
iOS app for display and monitor the current Bitcoint (BTC) rate.
Stars: ✭ 38 (-47.95%)
Mutual labels:  price
uber-cli
Beeps when surge is gone
Stars: ✭ 29 (-60.27%)
Mutual labels:  price
CryptoCurrency
Page to keep track of value & profits of a portfolio of cryptocurrency (based on Coinmarketcap, Bitfinex and Binance)
Stars: ✭ 27 (-63.01%)
Mutual labels:  price
i3blocks-crypto
💵 View your favorite coins' ticker prices with i3blocks.
Stars: ✭ 30 (-58.9%)
Mutual labels:  price
crypto-convert
Instantly convert cryptocurrency and get price information
Stars: ✭ 26 (-64.38%)
Mutual labels:  price
django-prices-openexchangerates
openexchangerates.org support for django-prices
Stars: ✭ 33 (-54.79%)
Mutual labels:  price
Sarrafi
💵 Exchange price application for android
Stars: ✭ 49 (-32.88%)
Mutual labels:  price
spot price machine learning
Machine Learning for Spot Prices
Stars: ✭ 25 (-65.75%)
Mutual labels:  price
price-optimization-shiny
Shiny app for Price Optimization using prophet and lme4 libraries for R.
Stars: ✭ 28 (-61.64%)
Mutual labels:  price
ShoppingList
📝 My first Android app, a shopping list app.
Stars: ✭ 17 (-76.71%)
Mutual labels:  price
currency-format
The «Price Format» extension for Magento 2
Stars: ✭ 18 (-75.34%)
Mutual labels:  price
SyliusCustomOptionsPlugin
A Sylius plugin that adds customer options
Stars: ✭ 42 (-42.47%)
Mutual labels:  price

coinmarketcap

NPM Package Build Status

js-standard-style

API

ticker([options])

Get a list of assets and their info.

  • options (Object) Optional.
    • limit (Number) Only return the top limit assets. Default is to get all assets.
    • convert (String) Return price, 24h volume, and market cap in terms of another currency.

Returns a promise.

Example:

await coinmarketcap.ticker({
  limit: 10,
  convert: 'eur'
})
// [
//     {
//         "id": "bitcoin",
//         "name": "Bitcoin",
//         "symbol": "BTC",
//         "rank": "1",
//         "price_usd": "1030.06",
//         "price_btc": "1.0",
//         "24h_volume_usd": "321117000.0",
//         "market_cap_usd": "16733968488.0",
//         "available_supply": "16245625.0",
//         "total_supply": "16245625.0",
//         "percent_change_1h": "0.52",
//         "percent_change_24h": "-1.01",
//         "percent_change_7d": "-1.77",
//         "last_updated": "1490895549",
//         "price_eur": "960.3403889",
//         "volume_eur": "299382195.855",
//         "market_cap_eur": "15601329830.0"
//     },
//     ... (9 more)
// ]

tickerByAsset(assetID, [options])

Get info about a particular asset.

  • assetID (String) Asset ID (i.e 'bitcoin')
  • options (Object) Optional.
    • convert (String) Return price, 24h volume, and market cap in terms of another currency.

Returns a promise.

Example:

await coinmarketcap.tickerByAsset('bitcoin', { convert: 'eur' })
// {
//     "id": "bitcoin",
//     "name": "Bitcoin",
//     "symbol": "BTC",
//     "rank": "1",
//     "price_usd": "1030.06",
//     "price_btc": "1.0",
//     "24h_volume_usd": "321117000.0",
//     "market_cap_usd": "16733968488.0",
//     "available_supply": "16245625.0",
//     "total_supply": "16245625.0",
//     "percent_change_1h": "0.52",
//     "percent_change_24h": "-1.01",
//     "percent_change_7d": "-1.77",
//     "last_updated": "1490895549",
//     "price_eur": "960.3403889",
//     "volume_eur": "299382195.855",
//     "market_cap_eur": "15601329830.0"
// }

global([options])

Get global info.

  • options (Object) Optional.
    • convert (String) Return 24h volume, and market cap in terms of another currency.

Returns a promise.

Example:

await coinmarketcap.ticker()
// {
//     "total_market_cap_usd": 24854674203.0,
//     "total_24h_volume_usd": 694102237.0,
//     "bitcoin_percentage_of_market_cap": 67.33,
//     "active_currencies": 680,
//     "active_assets": 80,
//     "active_markets": 2817
// }

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].