v52

latestOpenAPI 3.1.0Apache-2.0raw.githubusercontent.com2026-08-0748144201.5 KB
network

Estimate network fees

Given a HAPI transaction, estimate the network fees in tinycents.

post/api/v1/network/fees

Query parameters

mode'INTRINSIC' | 'STATE'

Estimate solely based on the transaction's inherent properties or use network state.

Estimate solely based on the transaction's inherent properties or use network state.

high_volume_throttleinteger

The high-volume throttle utilization in basis points where 10000 equals 100%. A value of 0, the default, indicates no high-volume pricing.

Response

OK

high_volume_multiplierinteger required

The high-volume pricing multiplier per HIP-1313. A value of 1 indicates no high-volume pricing. A value greater than 1 applies when the transaction's highVolume flag is true and throttle utilization is non-zero.

totalinteger required

The sum of the network, node, and service subtotals in tinycents.

Example response

{
  "high_volume_multiplier": 100,
  "network": {
    "multiplier": 2,
    "subtotal": 1200
  },
  "node": {
    "base": 1000,
    "extras": [
      {
        "charged": 1,
        "count": 2,
        "fee_per_unit": 100,
        "included": 1,
        "name": "Signatures",
        "subtotal": 100
      }
    ]
  },
  "service": {
    "base": 1000,
    "extras": [
      {
        "charged": 1,
        "count": 2,
        "fee_per_unit": 100,
        "included": 1,
        "name": "Signatures",
        "subtotal": 100
      }
    ]
  },
  "total": 1000
}