v34

latestOpenAPI 3.1.0AGPL-3.0-onlyraw.githubusercontent.com2026-08-018932140.9 KB
Nodes

Get node capabilities

Returns the version and supported capabilities for a specific node. For local nodes, returns this instance's own metadata. For remote nodes, relays the response from the remote instance's /api/meta endpoint. Returns { version: null, capabilities: [] } if the remote node is offline or doesn't support the meta endpoint.

get/api/nodes/{id}/meta

Path parameters

idinteger required

Numeric resource ID.

Response

Node capability metadata.

versionstring nullable required

Sencho version of the node, or null if unavailable.

capabilitiesstring[] required

List of feature capabilities the node supports. Empty array if unavailable.

Example response

{
  "version": "0.31.0",
  "capabilities": [
    "stacks",
    "containers",
    "fleet"
  ]
}