> For the complete documentation index, see [llms.txt](https://docs.millioncloud.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.millioncloud.org/public-api/million-liquidity-pools.md).

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