Last updated 23 days ago
Returns transaction actions analysis results for a given address.
https://openapi.misttrack.io/v1/address_action ?coin=ETH &address=0xb3065fe2125c413e973829108f23e872e1db9a6b &api_key=YourApiKey
Try this endpoint in your browser 🔗
Query Parameters
coin
string
the coin to check for address actions, all optional values can be found here
address
the address to check
api_key
your api key
Response Data Parameters
received_txs
list
The analysis result of the incoming transaction of the target address.
spent_txs
The analysis result of the outgoing transaction of the target address.
The API response data is suitable for display in a pie chart, as shown in the following figure.
Sample Response
{ "success": true, "msg": "", "action_dic": { "received_txs": [ { "action": "DEX", "count": 7, "proportion": 70.0 }, { "action": "Mixer", "count": 1, "proportion": 10.0 }, { "action": "Exchange", "count": 1, "proportion": 10.0 }, { "action": "Swap", "count": 1, "proportion": 10.0 } ], "spent_txs": [ { "action": "Exchange", "count": 15, "proportion": 57.69 }, { "action": "DEX", "count": 2, "proportion": 7.69 }, { "action": "Transfer", "count": 9, "proportion": 34.62 } ] } }