Sandbox version
For experimental use only. Proceed with caution.
Utility Methods
Ping the server
wss://honeycluster.io
rpc method: ping

Tests connectivity to the server. The server should respond immediately. Useful for health checks and latency measurement.

Try it now
Response · ping WS Response
{
  "result": {},
  "status": "success",
  "type": "response",
  "id": 1
}
Request Message
ping WS Request
application/json
Ping the server
FieldTypeDescription
command
required
string
WebSocket command name
id
object
Client-supplied identifier to correlate requests with responses.
api_version
object
API version for the response format. Version 2 is the default for rippled 2.0+.
Example
Json
{
  "command": "ping",
  "id": 1
}
Response Message
ping WS Response
application/json
WebSocket response for ping
FieldTypeDescription
result
object
status
enum<string>
Available
successerror
type
string
id
stringnumber
Echo of the client-provided correlation ID
Example
Json
{
  "result": {},
  "status": "success",
  "type": "response",
  "id": 1
}