Module locked amount

Return locked balance of the module

GET//osmo.nownodes.io/osmosis/lockup/v1beta1/module_locked_amount
Response

A successful response.

Body
coinsarray of object
Request
const response = await fetch('//osmo.nownodes.io/osmosis/lockup/v1beta1/module_locked_amount', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "coins": [
    {
      "denom": "text",
      "amount": "text"
    }
  ]
}