Wallet
Get all chain network fees (fee oracle snapshot)
Returns **all chain network fees** in one call. Reads from the fee oracle cache (no RPC during the request). Each chain returns the **full fee object** (networkFee, gasPriceGwei, congestion, estimatedTime, feeTiers for EVM, etc.) for frontend/UX. Use for dashboards or "current fees" screens.
GET
/api/wallet/feesSDK setup
Create a client instance. No authentication is required for this endpoint.
import { Configuration, WalletApi } from 'mudbase-sdk';
const configuration = new Configuration({
basePath: 'https://cloud.mudbase.dev',
});
const wallet = new WalletApi(configuration);import { Configuration, WalletApi } from 'mudbase-sdk';
const configuration = new Configuration({
basePath: 'https://cloud.mudbase.dev',
});
const wallet = new WalletApi(configuration);Example request
Call this endpoint using the client from SDK setup. Use View HTTP for a raw cURL example.
const { data: result } = await wallet.getAllFees();const { data: result } = await wallet.getAllFees();Playground
liveTest this endpoint with your own credentials. Your requests will be sent to the live API.
No Request Yet
Send a request to see the full inspector
Authentication
Public — No Auth Required
Responses
200Fee oracle snapshot (chain -> full fee object)
json
{
"success": true,
"data": {
"fees": {
"ethereum": {
"networkFee": "0.00042 ETH",
"gasPriceGwei": 18,
"congestion": "normal",
"estimatedTime": "15 seconds",
"feeTiers": {
"slow": {
"gasPriceGwei": 18,
"networkFee": "0.000378 ETH"
},
"normal": {
"gasPriceGwei": 18,
"networkFee": "0.000378 ETH"
},
"fast": {
"gasPriceGwei": 22,
"networkFee": "0.000462 ETH"
}
}
},
"bitcoin": {
"networkFee": "0.00012 BTC",
"satPerVb": 12,
"congestion": "normal",
"estimatedTime": "10–30 minutes"
}
},
"updatedAt": "2026-03-05T12:00:00.000Z",
"count": 15
}
}{
"success": true,
"data": {
"fees": {
"ethereum": {
"networkFee": "0.00042 ETH",
"gasPriceGwei": 18,
"congestion": "normal",
"estimatedTime": "15 seconds",
"feeTiers": {
"slow": {
"gasPriceGwei": 18,
"networkFee": "0.000378 ETH"
},
"normal": {
"gasPriceGwei": 18,
"networkFee": "0.000378 ETH"
},
"fast": {
"gasPriceGwei": 22,
"networkFee": "0.000462 ETH"
}
}
},
"bitcoin": {
"networkFee": "0.00012 BTC",
"satPerVb": 12,
"congestion": "normal",
"estimatedTime": "10–30 minutes"
}
},
"updatedAt": "2026-03-05T12:00:00.000Z",
"count": 15
}
}