Coins

How to use NodeHub.io API to get project stats.

Get list of supported coins with basic information

GET https://api.nodehub.io/v1/coins

This endpoint returns you a list of coins, or if specified, a more in depth information about a coin.

Headers

Name
Type
Description

Authorization*

string

Authentication token you've generated in your account

[
  {
    "collateral": 5000, 
    "delisted": false, 
    "id": "exclusive", 
    "label": "ExclusiveCoin", 
    "maintenance": false, 
    "market_cap": 1133044, 
    "masternode_value": 1032.365, 
    "price": 0.206473, 
    "price_change": 8.87011, 
    "revenue_mo": null, 
    "roi": null, 
    "ticker": "EXCL", 
    "volume": 28720.6
  }, 
  {
    "collateral": 1000, 
    "delisted": false, 
    "id": "solaris", 
    "label": "Solaris", 
    "maintenance": false, 
    "market_cap": 673897, 
    "masternode_value": 390.291, 
    "price": 0.390291, 
    "price_change": -25.43729, 
    "revenue_mo": 5.519365225, 
    "roi": 16.97, 
    "ticker": "XLR", 
    "volume": 4931.385481
  }, 
  {
    "collateral": 1000, 
    "delisted": false, 
    "id": "innova", 
    "label": "Innova", 
    "maintenance": false, 
    "market_cap": null, 
    "masternode_value": 4.332660000000001, 
    "price": 0.00433266, 
    "price_change": -55.91487, 
    "revenue_mo": 0.5206052045, 
    "roi": 144.19, 
    "ticker": "INN", 
    "volume": 94.75
  }, 
  {
    "collateral": 10000, 
    "delisted": false, 
    "id": "bitcloud", 
    "label": "Bitcloud", 
    "maintenance": false, 
    "market_cap": 360473, 
    "masternode_value": 119.5965, 
    "price": 0.01195965, 
    "price_change": 314.47564, 
    "revenue_mo": 6.2618734125, 
    "roi": 62.83, 
    "ticker": "BTDX", 
    "volume": 183.91275776
  }
... 
]

View detailed information about a specific coin

GET https://api.nodehub.io/v1/coins/:id

This endpoint returns you a list of coins, or if specified, a more in depth information about a coin.

Path Parameters

Name
Type
Description

id*

string

ID of the coin you'd like to view

Headers

Name
Type
Description

Authorization*

string

Authentication token you've generated in your account

Last updated