granter is the address of the user granting an allowance of their funds.
grantee is the address of the user being granted an allowance of another user's funds.
A successful response.
allowance is a allowance granted for grantee by granter.
const response = await fetch('https://kava.nownodes.io/cosmos/feegrant/v1beta1/allowance/{granter}/{grantee}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "allowance": { "granter": "text", "grantee": "text", "allowance": { "type_url": "text", "value": "Ynl0ZXM=" } } }