# 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 %}


---

# Agent Instructions: 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.millioncloud.org/public-api/million-holders.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.
