API Documentation

Get access to the most reliable & comprehensive APIs of crypto assets.

THE LISTER
API Endpoint :
https://blocknomy.net/api/list
Header :
Authorization: Bearer <YOUR PERSONAL ACCESS TOKEN>
Usage :
Provides coins' id to make API calls.
Sample Output :
[
  {
    "coin_name": "Bitcoin",
    "symbol": "btc",//official ticker symbol of the crypto asset.
    "coin_id": "bitcoin"
  },
  {
    "coin_name": "Ethereum",
    "symbol": "eth",
    "coin_id": "ethereum"
  },
  {
    "coin_name": "ChainLink",
    "symbol": "link",
    "coin_id": "chainlink"
  },
  ...
]

          

THE DETAILER
API Endpoint :
https://blocknomy.net/api/detail/bitcoin
Header :
Authorization: Bearer <YOUR PERSONAL ACCESS TOKEN>
Usage :
Provides data (product progress, team, rank, partnership etc.) based on the coins' id.
Sample Output :
{
  "coin_name": "Bitcoin",
  "symbol": "btc",
  "product_progress": 93, //percentile score of the overall progress made by the crypto asset.
  "team": 100, //percentile score of the crypto asset's core team & advisors.
  "token_fundamentals": 100, //percentile score of the crypto asset's basic fundamentals & usecases. 
  "github_activity": 95, //percentile score of the total development activity on Github.
  "marketing": 90, //percentile score of the overall marketing/advertising performance.
  "partnership": 90, //percentile score of the client base & the partnership activities.
  "uniqueness": 99, //percentile score of the uniqueness when compared to its competition.
  "total_score": 96, //overall official BlocknomyScore of the crypto asset in percentage.
  "exchange_name": "Bitfinex",//crypto exchange where the asset is being traded at its least competitive value.
  "exchange_link": "https://www.bitfinex.com/t/BTCUSD", //asset can be directly purchased at its least competitive value.
  "website": "https://bitcoin.org/en/", //official website of the crypto asset.
  "twitter": "https://twitter.com/Bitcoin",//official twitter profile of the crypto asset.
  "telegram": null,  //official telegram group or channel of the crypto asset.
  "whitepaper": "https://bitcoin.org/en/bitcoin-paper" //official whitepaper document of the crypto asset.
}

          

THE EXTRACTOR
API Endpoint :
https://blocknomy.net/api/extract
Header :
Authorization: Bearer <YOUR PERSONAL ACCESS TOKEN>
Usage :
Provides data (product progress, team, rank, partnership etc.) of all coins.
Sample Output :
[
  {
    "coin_name": "Bitcoin",
    "coin_id": "bitcoin",
    "symbol": "btc",
    "product_progress": 93,
    "team": 100,
    "token_fundamentals": 100,
    "github_activity": 95,
    "marketing": 90,
    "partnership": 90,
    "uniqueness": 99,
    "total_score": 96,
    "exchange_name": "Bitfinex",
    "exchange_link": "https://www.bitfinex.com/t/BTCUSD",
    "website": "https://bitcoin.org/en/",
    "twitter": "https://twitter.com/Bitcoin",
    "telegram": null,
    "whitepaper": "https://bitcoin.org/en/bitcoin-paper"
  },
  {
    "coin_name": "Ethereum",
    "coin_id": "ethereum",
    "symbol": "eth",
    "product_progress": 87,
    "team": 98,
    "token_fundamentals": 97,
    "github_activity": 100,
    "marketing": 90,
    "partnership": 90,
    "uniqueness": 99,
    "total_score": 94,
    "exchange_name": "Gemini",
    "exchange_link": "https://gemini.com/",
    "website": "https://www.ethereum.org/",
    "twitter": "https://twitter.com/ethereum",
    "telegram": null,
    "whitepaper": "https://ethereum.org/en/whitepaper/"
  },
  ...
]