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"
  ]
}

Changes

Changed in 4 of the 36 revisions of this API.128

    • removed the ADMIRAL_REQUIRED enum value from the code response property for the response status 401

      response-property-enum-value-removed

    • removed the ADMIRAL_REQUIRED enum value from the code response property for the response status 404

      response-property-enum-value-removed

    • added the new PAID_REQUIRED enum value to the code response property for the response status 401

      response-property-enum-value-added

    • added the new PAID_REQUIRED enum value to the code response property for the response status 404

      response-property-enum-value-added

    • removed the PRO_REQUIRED enum value from the code response property for the response status 401

      response-property-enum-value-removed

    • removed the PRO_REQUIRED enum value from the code response property for the response status 404

      response-property-enum-value-removed

    • added the new path request parameter id

      new-request-path-parameter

    • added the non-success response with the status 401

      response-non-success-status-added

    • added the non-success response with the status 404

      response-non-success-status-added

    • added the success response with the status 200

      response-success-status-added

    • endpoint added

      endpoint-added