Last updated 13 days ago
Returns our currently suggested fees for new transactions.
Successful operation
"OK"
const response = await fetch('https://open-api.unisat.io/v1/indexer/fees/recommended', { method: 'GET', headers: {}, }); const data = await response.json();
{ "code": 0, "msg": "OK", "data": { "fastestFee": 0, "halfHourFee": 0, "hourFee": 0, "economyFee": 0, "minimumFee": 0 } }