action nebl_get_sync { label: "Get node sync status" description: "Returns information on the node's sync progress" provider: nebl method: GET path: "/ins/sync" encoding: json output: { type: "object" description: "Object containing node sync status" properties: { blockChainHeight: { type: "number" description: "Current blockchain height" } error: { type: "string" description: "Recent sync error messages" } height: { type: "number" description: "Height node is synced to" } status: { type: "string" description: "Current sync status" } syncPercentage: { type: "number" description: "Current sync percentage" } type: { type: "string" description: "Node type" } } } }