⛓️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:
Transactions in different blockchains such as Bitcoin and Ethereum
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
Name | Type | Description |
---|---|---|
date_time__lte* | String | to datetime in isoformat example: 2022-10-09T00:00:05 lte = less than equal to |
date_time__gte* | String | from datetime in isoformat example: 2022-10-08T00:00:05 gte = greater than equal to |
resolution | String | resolution Example: 1d Default: 1d * It just supports 1d for now. |
symbol | String | symbol Example: BTC if not provided, all symbol insights are returned. |
Headers
Name | Type | Description |
---|---|---|
Authorizaiton* | Token <AUTH_TOKEN> |
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
Name | Type | Description |
---|---|---|
date_time__lte* | String | to datetime in isoformat example: 2022-10-09T00:00:05 lte = less than equal to
|
date_time__gte* | String | from datetime in isoformat example: 2022-10-08T00:00:05 gte = greater than equal to |
resolution | String | resolution Example: 1d, 7d, 30d Default: 1d |
symbol | String | symbol Example: BTC if not provided, all symbol insights are returned. |
Headers
Name | Type | Description |
---|---|---|
Authorization* | String | Token <AUTH_TOKEN> |
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:
For data visualization and user engagement increment
Making decision for investing
Monitor the overall market situation based on them.
Creating different indices based on on-chain data such as:
Wallet based indices
Volume based indices
Exchange based indices
Transaction based indices
...
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