# Million Holders

{% hint style="warning" %}
Features aren't implemented yet. Next release will come soon !
{% endhint %}

## Million Token Holders List

<mark style="color:blue;">`GET`</mark> `https://api.millioncloud.org/holders`

Get the Holders JSON list.\
<https://api.milliontoken.cloud/holders?blockchain=eth>

#### Query Parameters

| Name       | Type    | Description                                                                  |
| ---------- | ------- | ---------------------------------------------------------------------------- |
| limit      | integer | Limit the number of rows.                                                    |
| split      | boolean | <p>Split holders in sub arrays for each blockchains.<br>Default is true.</p> |
| blockchain | string  | Select holders of the specified blockchains only                             |

{% tabs %}
{% tab title="200 Cake successfully retrieved." %}

```
{
    "ethereum": [
        {
            "wallet": "0x0000000000000000000000000000000000000000",    
            "mm-balance": "123000000000000",    
            "mm-usd-value": "1452145200000000"
        },
        {
            "wallet": "0x0000000000000000000000000000000000000000",    
            "mm-balance": "123000000000000",    
            "mm-usd-value": "1452145200000000"
        }
    ]
}
```

{% endtab %}

{% tab title="404 Could not find a cake matching this query." %}

```
{    "message": "There is no holders, or an error during the request"}
```

{% endtab %}
{% endtabs %}

## Million Token Holder Details

<mark style="color:blue;">`GET`</mark> `https://api.millioncloud.org/holders/:address`

<https://api.milliontoken.cloud/holders/0x0000000000000000000000000000000000000000>

{% tabs %}
{% tab title="200 " %}

```
{
    "address": "0x0000000000000000000000000000000000000000", 
    "mm_balance": 123000000000000,
    "mm_usd_value": 1452145200000000
}
```

{% endtab %}

{% tab title="404 " %}

```
{    "message": "The Wallet Address don't hold any MM Token"}
```

{% endtab %}
{% endtabs %}
