API REFERENCE v1
Network Fee
Planned network fee estimates and transaction fee strategy fields.
On this page
#Fee Types
PlannedA network fee pays for transaction inclusion. It is distinct from any processing fee charged by a payment service.
| Strategy | Intended behavior |
|---|---|
| normal | Use the regular network fee estimate |
| priority | Request a higher-priority network estimate |
| custom | Supply an explicit fee-rate |
#Current recommended network fee
AvailableCurrent Litecoin normal/priority rates in atomic units per virtual byte on the selected network.
GET
/networks/{currency}/feeRequest
- HTTP Method
GET - Content Type
application/json - URL
https://coinkun.com/api/v1/networks/{currency}/fee
| Parameter | Type | Description | Required |
|---|---|---|---|
currency | string | Asset code in the URL, for example ltc. | Yes |
curl --request GET "https://coinkun.com/api/v1/networks/${CURRENCY}/fee"[
{
"strategy": "normal",
"rate": 1,
"source": "regtest_fallback"
},
{
"strategy": "priority",
"rate": 1,
"source": "regtest_fallback"
}
]Illustrative example · Replace YOUR_* and ${VARIABLES} with your own values · Never paste real keys into shared documentation.
#Fee Rate
PlannedA custom fee strategy carries a fee-rate field. The rate unit depends on the blockchain and must not be confused with the total fee amount.
| Field | Type | Meaning |
|---|---|---|
| fee | string | Set to custom when supplying a rate |
| fee-rate | integer | Explicit network-specific rate |
| priority-fee | integer | Additional validator tip for a future Ethereum adapter |