# Get Address Actions

Returns transaction actions analysis results for a given address.

#### HTTP Request

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

> Try this endpoint in your [browser](https://openapi.misttrack.io/v1/address_action?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 actions, <strong>all optional values can be found</strong> <a href="../../openapi/overview#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" %}
Response Data Parameters

<table><thead><tr><th width="237">Parameter</th><th width="83.66666666666666">Type</th><th>Description</th></tr></thead><tbody><tr><td>received_txs</td><td>list</td><td>The analysis result of the incoming transaction of the target address.</td></tr><tr><td>spent_txs</td><td>list</td><td>The analysis result of the outgoing transaction of the target address.</td></tr></tbody></table>

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

<figure><img src="https://2289122987-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FIQJl2Dct9zEgH2fSUNas%2Fuploads%2FcDRV2AkkqSLQUJZNI801%2Factions.png?alt=media&#x26;token=11ccc731-83c3-4eaf-982b-a831c0fdcbd7" alt=""><figcaption><p>Pie chart preview</p></figcaption></figure>

Sample Response

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

{% endtab %}
{% endtabs %}

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