# Million Liquidity Pools

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

## Total Liquidity amounts per blockchain

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

<https://api.milliontoken.cloud/liquidity?blockchain=eth>

#### Query Parameters

| Name       | Type   | Description                                                                                                                                    |
| ---------- | ------ | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| blockchain | string | <p>Get the MM liquidity for the specified blockchain<br>parameter's list: eth, ether, ethereum, sol, solana, matic, polygon, ada, cardano.</p> |

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

```
{
    "solana": {
        "total-usd-value": 890343, 
        "total-mm-stored": 27000,
        "total-mm-value": 445223
    }
}
```

{% endtab %}
{% endtabs %}

## Liquidity Pairs per blockchain

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

<https://api.milliontoken.cloud/liquidity-pairs?blockchain=eth,matic>

#### Path Parameters

| Name       | Type   | Description                                             |
| ---------- | ------ | ------------------------------------------------------- |
| blockchain | string | Get the MM liquidity pairs for the specified blockchain |

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

```
{
    "ethereum": [
        "MM-USDC",
        "MM-ETH",
        "MM-BUSD",
        "MM-USDT"
    ],
    "polygon": [
        "MM-USDC",
        "MM-ETH"
    ]
}
```

{% 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-liquidity-pools.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.
