# Mempool

```
https://api.vechainstats.com/v2/network/mempool
    ?expanded=true
    &VCS_API_KEY=your_api_key
```

{% hint style="info" %}
**Note :** This endpoint is throttled to **30 calls/minute** regardless of API Pro tier.
{% endhint %}

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

| Parameter    | Description                                                                                          |
| ------------ | ---------------------------------------------------------------------------------------------------- |
| expanded     | Either `true` or `false`. Setting this option to `true` expands the response with extra information. |
| {% endtab %} |                                                                                                      |

{% tab title="Response" %}

```json
{
    "status": "success",
    "code": 200,
    "message": "ok",
    "data": {
        "pending_txns": 1,
        "total_clauses": 1,
        "total_size": 157,
        "txlist": [
            "0x1f2168ebf6221c13fad80c0fc87355c10e6d54c32029156d3722e30a2fe62665"
        ]
    },
    "meta": {
        "expanded": true,
        "timestamp": 1695287113
    }
}
```

{% endtab %}
{% endtabs %}
