Superfluid delegation amount

Returns the coins superfluid delegated for the delegator, validator, denom triplet

GET//osmo.nownodes.io/osmosis/superfluid/v1beta1/superfluid_delegation_amount
Query parameters
Response

A successful response.

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