get_blockchain_fee
Retrieve the recommended fee or gas price for a blockchain in satoshis per byte. Supported blockchains include Bitcoin, Dogecoin, Ethereum, and Litecoin. Optimize transaction costs with accurate fee estimation.
Instructions
[fee_estimation] 1 credit per API call Get the recommended fee/gas price for a blockchain. Fee is in satoshis(meaning currency(BTC, DOGE,... / 100 000 000) per byte This API is supported for the following blockchains: Bitcoin Dogecoin Ethereum Litecoin
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain | Yes | Chain |
Input Schema (JSON Schema)
{
"properties": {
"chain": {
"description": "Chain",
"enum": [
"ETH",
"BTC",
"LTC",
"DOGE"
],
"example": "ETH",
"type": "string"
}
},
"required": [
"chain",
"chain"
],
"type": "object"
}