Sandbox version
For experimental use only. Proceed with caution.
network
Get live network fee snapshot
get
/ledger/fee
operationId: network-ledgerFee

Live network fee snapshot. Returns the current base fee, median fee, open-ledger fee, and minimum fee (all in drops) alongside the currently open ledger sequence. No database lookup — the response reflects current ledger state at request time.

Unlock protected endpoints

Enter your Bearer token once to enable every protected route in this API reference.

HTTP bearer

Saved for this browser tab only. The credential is never sent until you test an endpoint.

Authorizations
NameLocationDetails
BearerAuthAuthorization header · bearerJWT issued by the Honeycluster auth service for the `indexer` audience. Present as `Authorization: Bearer <token>`.
Responses
200
application/json
Successful response
FieldTypeDescription
baseFeeDrops
string
Current base reference fee in drops.
medianFeeDrops
string
Median fee (in drops) of transactions in the last closed ledger.
openLedgerFeeDrops
string
Minimum fee (in drops) required to enter the currently open ledger.
minimumFeeDrops
string
Minimum fee (in drops) accepted when the queue is empty.
currentLedgerSequence
integer
Index of the currently open ledger.
Example
Json
{
  "baseFeeDrops": "10",
  "medianFeeDrops": "5000",
  "openLedgerFeeDrops": "12",
  "minimumFeeDrops": "10",
  "currentLedgerSequence": 103801288
}
400
application/json
Invalid input data
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "BAD_REQUEST",
  "message": "Invalid input data",
  "issues": []
}
401
application/json
Authorization not provided
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "UNAUTHORIZED",
  "message": "Authorization not provided",
  "issues": []
}
403
application/json
Insufficient access
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "FORBIDDEN",
  "message": "Insufficient access",
  "issues": []
}
404
application/json
Not found
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "NOT_FOUND",
  "message": "Not found",
  "issues": []
}
500
application/json
Internal server error
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "INTERNAL_SERVER_ERROR",
  "message": "Internal server error",
  "issues": []
}