Server info

This endpoint retrieves human-readable version of various information about the rippled server.

Request

GET /api/v1/network/server_info

Examples

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

Response

{
  "info": {
    "build_version": "1.11.0",
    "complete_ledgers": "81504012-81539201",
    "initial_sync_duration_us": "102156474",
    "io_latency_ms": 1,
    "jq_trans_overflow": "0",
    "last_close": {
      "converge_time_s": 3,
      "proposers": 35
    },
    "load_factor": 1,
    "node_size": "huge",
    "peer_disconnects": "4",
    "peer_disconnects_resources": "0",
    "peers": 12,
    "pubkey_node": "n9LC3KrWgXWvTjZ5opGi8kUHRhsoZq7ZbXfMrhbcMAkUGVywMbBL",
    "pubkey_validator": "none",
    "server_state": "full",
    "server_state_duration_us": "662233177701",
    "time": "2023-Aug-01 07:22:23.479760 UTC",
    "uptime": 662335,
    "validated_ledger": {
      "age": 4,
      "base_fee_xrp": 0.00001,
      "hash": "D6B0A1283CF59F9A31307C9BFBC30D156B56819A279BA2ED2D8CC22EFA389B81",
      "reserve_base_xrp": 10,
      "reserve_inc_xrp": 2,
      "seq": 81539201
    },
    "validation_quorum": 28,
    "validator_list": {
      "count": 2,
      "expiration": "2023-Oct-24 00:00:00.000000000 UTC",
      "status": "active"
    }
  }
}

Response format

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

Last updated