Methods

Ping

Health check

Public · Returns response

Method ping

Health check

Request

This method takes no parameters.

Example

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "ping"
}

Response

On success the server replies with a JSON-RPC response matching the request id.

Example

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "pong"
}

On failure the server replies with a JSON-RPC error object matching the request id. See Errors for the full list of codes and recovery hints.