All API methods are available through this single endpoint using JSON-RPC 2.0 protocol. Send the method name in the method field and parameters as a dictionary in params. Useful when you need to call multiple methods in sequence or prefer JSON-RPC over REST.
A JSON-RPC 2.0 request. Set method to the API method name (e.g., "getWalletInformation") and params to a dictionary of parameters.
JSON-RPC protocol version, always "2.0".
Request ID. Pass any string and it will be echoed in the response.
The get method name (e.g., "seqno", "get_wallet_data") or its numeric ID.
Method parameters as key-value pairs.
OK
Indicates if the request succeeded. If false, check the error field for details.
The response data. Only present when ok is true.
Optional request ID that you can pass in the request and receive back in the response. Useful for matching async responses.
JSON-RPC protocol version, always "2.0".
Request ID. Pass any string and it will be echoed in the response.