⛓️On Chain Endpoints

Twitter On Chain API focuses on providing data regarding on-chain interactions

On-chain insight aims to monitor and extract beneficial data from blockchain transactions by analyzing them and turning them into meaningful insights. Compared with the traditional stock market, on-chain data can serve as the main source of fundamental data for unbiased decision-making in cryptocurrency.

The majority of data will be processed from:

  1. Transactions in different blockchains such as Bitcoin and Ethereum

  2. Wallet information of different blockchains

Endpoints

Retrieves A List Of Daily On Chain Insights

GET https://api.wisdomise.io/v0/insights/on-chain-data/

It has different insights:

wallet_count_N -> holders with at least N coin

active|sender|receiver_wallet_count -> quantity of wallets

exchange_inflow|outflow|netflow -> in volume and USD

Query Parameters

Headers

Response
{
    "count": 4,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 16,
            "key": "",
            "insight_service_name": "on-chain-insight",
            "resolution": "1d",
            "received_at": "2022-10-24T12:55:11.911997Z",
            "created_at": "2022-10-24T12:55:06.287281Z",
            "date_time": "2022-10-24T00:00:00Z",
            "expiration_date_time": "2022-10-25T00:00:00Z",
            "market_property": "on_chain_data",
            "version": "v0.1.0",
            "exchange": "",
            "symbol": "ETH",
            "insight_result": {
                "wallet_count_10": 318185.0,
                "wallet_count_100": 45421.0,
                "wallet_count_1000": 6312.0,
                "wallet_count_10000": 1162.0,
                "active_wallet_count": 405887.0,
                "exchange_inflow_USD": 169835017.7881223,
                "last_end_point_date": "2022-10-23T23:59:59+00:00",
                "sender_wallet_count": 205096.0,
                "exchange_netflow_USD": -12983006.492949711,
                "exchange_outflow_USD": 182818024.281072,
                "receiver_wallet_count": 152480.0,
                "exchange_inflow_NATIVE": 128832.97853363708,
                "exchange_netflow_NATIVE": -9848.613192922101,
                "exchange_outflow_NATIVE": 138681.59172655919
            }
        },
        ...
    ]
}

Retrieves The Changes Of The Last N Instances Of Insights

GET https://api.wisdomise.io/v0/insights/on-chain-data-changes/

Changes during last N insight. If you want to show in percentage in string, multiple the numbers by 100, so 0.129 will be +12% and -0.083 will be -8.3%. Like the previous endpoint, It has different insights as well:

wallet_count_N -> changes of holders with at least C coin in the last N days

active|sender|receiver_wallet_count -> changes in quantity of wallets in last N days

exchange_inflow|outflow|netflow -> changes in volume and USD in last N days

Query Parameters

Headers

Response
{
    "count": 4,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 13,
            "key": "",
            "insight_service_name": "on-chain-insight",
            "resolution": "1d",
            "received_at": "2022-10-24T12:55:11.853173Z",
            "created_at": "2022-10-24T12:55:06.287281Z",
            "date_time": "2022-10-24T00:00:00Z",
            "expiration_date_time": "2022-10-25T00:00:00Z",
            "market_property": "on_chain_data_changes",
            "version": "v0.1.0",
            "exchange": "",
            "symbol": "ETH",
            "insight_result": {
                "wallet_count_10": 0.0004779378240622467,
                "wallet_count_100": 0.00017616101116413319,
                "wallet_count_1000": -0.0007915149596326998,
                "wallet_count_10000": -0.0017182130584192379,
                "active_wallet_count": 0.040119826461762376,
                "exchange_inflow_USD": 0.7513899674385811,
                "last_end_point_date": "2022-10-23T23:59:59+00:00",
                "sender_wallet_count": 0.08041363107184818,
                "exchange_netflow_USD": -0.7293596933515187,
                "exchange_outflow_USD": 0.2613097428686397,
                "receiver_wallet_count": -0.007918176672283783,
                "exchange_inflow_NATIVE": 0.7356955270092804,
                "exchange_netflow_NATIVE": -0.7317849374430299,
                "exchange_outflow_NATIVE": 0.2500069770709692
            }
        },
        ...
    ]
}

Total Value Locked (Available upon request)

GET https://api.wisdomise.io/v1/insights/on-chain-data/tvl

Use Cases

By using the On-Chain insights we have the ability of having observation with more first class data and information advantage. Some of the suggested use cases are as below:

  1. For data visualization and user engagement increment

  2. Making decision for investing

  3. Monitor the overall market situation based on them.

  4. Creating different indices based on on-chain data such as:

    1. Wallet based indices

    2. Volume based indices

    3. Exchange based indices

    4. Transaction based indices

    5. ...

Whales

You can find the distribution of whales per each coin during time. For instance, to figure out what was the count of Bitcoin holders holding more than 1000 BTC in the last June. In the below chart, an example way of presenting this data is presented.

New Addresses

As we are facing a growing industry, everyday newbies are joining blockchain by creating new wallet(s). So in this API, we can have the number of new arrival users per each coin or blockchain

Transaction Count

Showing potential activity in a coin i.e. while the transaction count increases for a coin, the coin will be more trendy.

TVL

The total value locked in each chain and DeFi protocol.

Last updated