Server Methods
Get validator manifest
wss://honeycluster.io
rpc method: manifest

Returns the manifest for a validator, which contains its ephemeral and master public keys.

Try it now
Response · manifest WS Response
{
  "result": {
    "details": {
      "domain": "example.com",
      "ephemeral_key": "n9J2GBQohpyB5T9V7j5QKbm2XxTG1JEMdRu2JkTvXGP6uBXgwKU",
      "master_key": "nHUFE9prPXPrHcG3SkwP1UzAQbSphqyQkQK9ATXLZsfkezRda2hL",
      "seq": 1
    },
    "manifest": "JAAAAAFxIe...(base64)..."
  },
  "status": "success",
  "type": "response",
  "id": 1
}
Request Message
manifest WS Request
application/json
Get validator manifest
FieldTypeDescription
command
required
string
WebSocket command name
id
object
Client-supplied identifier to correlate requests with responses.
public_key
string
The base58-encoded public key of the validator to look up.
api_version
object
API version for the response format. Version 2 is the default for rippled 2.0+.
Example
Json
{
  "command": "manifest",
  "id": 1,
  "public_key": "nHUFE9prPXPrHcG3SkwP1UzAQbSphqyQkQK9ATXLZsfkezRda2hL"
}
Response Message
manifest WS Response
application/json
WebSocket response for manifest
FieldTypeDescription
result
object
status
enum<string>
Available
successerror
type
string
id
stringnumber
Echo of the client-provided correlation ID
Example
Json
{
  "result": {
    "details": {
      "domain": "example.com",
      "ephemeral_key": "n9J2GBQohpyB5T9V7j5QKbm2XxTG1JEMdRu2JkTvXGP6uBXgwKU",
      "master_key": "nHUFE9prPXPrHcG3SkwP1UzAQbSphqyQkQK9ATXLZsfkezRda2hL",
      "seq": 1
    },
    "manifest": "JAAAAAFxIe...(base64)..."
  },
  "status": "success",
  "type": "response",
  "id": 1
}