> For the complete documentation index, see [llms.txt](https://docs.misttrack.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.misttrack.io/api-endpoints/get-address-counterparty.md).

# Get Address Counterparty

Returns counterparty analysis results for a given address.

#### HTTP Request

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

> Try this endpoint in your [browser](https://openapi.misttrack.io/v1/address_counterparty?coin=ETH\&address=0xb3065fe2125c413e973829108f23e872e1db9a6b\&api_key=YourApiKey) 🔗

{% tabs %}
{% tab title="Request" %}
Query Parameters

<table><thead><tr><th width="185.66666666666666">Parameter</th><th width="112">Type</th><th>Description</th></tr></thead><tbody><tr><td>coin</td><td>string</td><td>the coin to check for address counterparty, <strong>all optional values can be found</strong> <a href="/pages/4iOi28DV0NUUh4ETEpMx#multi-chain-support"><strong>here</strong></a></td></tr><tr><td>address</td><td>string</td><td>the address to check</td></tr><tr><td>api_key</td><td>string</td><td>your api key</td></tr></tbody></table>
{% endtab %}

{% tab title="Response" %}
The API response data is suitable for display in a pie chart, as shown in the following figure.

<figure><img src="/files/kfdIrV86t9Jxkd1woySH" alt=""><figcaption></figcaption></figure>

Sample Response

```json
{
    "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
        }
    ]
}

```

{% endtab %}
{% endtabs %}

#### [Rate Limits](https://docs.misttrack.io/openapi/overview#rate-limits)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.misttrack.io/api-endpoints/get-address-counterparty.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
