TriportRPC

admin_peers

Not available through Triport. admin_* is a node-management namespace and is not exposed by the service.

Method / Endpointadmin_peers (JSON-RPC, POST /rpc/eth)
StatusNot supported — always returns -32601
NetworkEthereum

Not supported

admin_peers belongs to the node administration namespace (admin_*), which inspects the internals of an individual Ethereum node (its peer set, identity, data directory). Triport is a multi-host routing service, not a single managed node, so these methods have no well-defined meaning across the pool and are not exposed.

Any request to an admin_*, personal_*, or engine_* method is rejected at the edge — it never reaches an upstream node — with a standard JSON-RPC error:

{
  "jsonrpc": "2.0",
  "id": 1,
  "error": {
    "code": -32601,
    "message": "admin namespace disabled"
  }
}

The HTTP status is 200; the rejection is carried in the JSON-RPC error envelope. Classification is case-insensitive. This matches the behaviour of every public Ethereum RPC provider — the admin namespace is disabled on production-facing endpoints.

What to use instead

See the shared errors page for the full error envelope.