MistTrack Docs
  • 👏Welcome to MistTrack
  • 🌟MistTrack Features
  • 📖Change Log
  • 🔗OpenAPI
    • Introduction
    • Overview
    • Quicknode Add-on Docs
  • 🎯api endpoints
    • Get API Status
    • Get Address Labels
    • Get Address Overview
    • Get Risk Score
    • Get Transactions Investigation
    • Get Address Actions
    • Get Address Profile
    • Get Address Counterparty
  • 💬support
    • Common Error Messages
    • Getting Help
Powered by GitBook
On this page
  1. api endpoints

Get Address Counterparty

PreviousGet Address ProfileNextCommon Error Messages

Last updated 3 months ago

Returns counterparty analysis results for a given address.

https://openapi.misttrack.io/v1/address_counterparty
   ?coin=ETH
   &address=0xb3065fe2125c413e973829108f23e872e1db9a6b
   &api_key=YourApiKey

Try this endpoint in your 🔗

Query Parameters

Parameter
Type
Description

coin

string

the coin to check for address counterparty, all optional values can be found

address

string

the address to check

api_key

string

your api key

The API response data is suitable for display in a pie chart, as shown in the following figure.

Sample Response

{
    "success": true, 
    "msg": "", 
    "address_counterparty_list": [
        {
            "name": "Uniswap", 
            "amount": 4496524.699, 
            "percent": 49.678
        }, 
        {
            "name": "Tornado.Cash", 
            "amount": 2377637.58, 
            "percent": 26.268
        }, 
        {
            "name": "Multichain", 
            "amount": 2168062.159, 
            "percent": 23.953
        }, 
        {
            "name": "Unknown", 
            "amount": 5350.102, 
            "percent": 0.059
        }, 
        {
            "name": "SushiSwap", 
            "amount": 2394.385, 
            "percent": 0.026
        }, 
        {
            "name": "sideshift.ai", 
            "amount": 1141.399, 
            "percent": 0.013
        }, 
        {
            "name": "Binance", 
            "amount": 302.008, 
            "percent": 0.003
        }
    ]
}
🎯
browser
here