Fee

This endpoint retrieves the current state of the open-ledger requirements for the transaction cost (fee).

Request

GET /api/v1/network/fee

Examples

curl https://api.xrpscan.com/api/v1/network/fee

Response

{
  "current_ledger_size": "41",
  "current_queue_size": "0",
  "drops": {
    "base_fee": "10",
    "median_fee": "5000",
    "minimum_fee": "10",
    "open_ledger_fee": "10"
  },
  "expected_ledger_size": "206",
  "ledger_current_index": 81539144,
  "levels": {
    "median_level": "128000",
    "minimum_level": "256",
    "open_ledger_level": "256",
    "reference_level": "256"
  },
  "max_queue_size": "4120"
}

Response format

Additional properties may be available in the response based on rippled fee command.

Last updated