GetNodeType


Returns node type. The possible return values are:

  • "Not in network, synced till epoch [epoch number]" if the server has not joined the network and is synced until a specific epoch.

  • "Seed" if the server is in lookup node mode and is an archival lookup node.

  • "Lookup" if the server is in lookup node mode

Example Request

=== "cURL"

```shell
curl -d '{
    "id": "1",
    "jsonrpc": "2.0",
    "method": "GetNodeType",
    "params": [""]
}' -H "Content-Type: application/json" -X POST "https://zil.nownodes.io/"
```

Example Response

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

Arguments