GET /nodes

Get a list of the installed nodes

Requires permission: nodes.read

Headers

Header Value
Accept application/json or text/html - see response section
Authorization Bearer [token] - if authentication is enabled

Response

Status Code Reason Response
200 Success Depends on Accept header. See below for details.
401 Not authorized none

Accept: application/json

Returns an array of Node Set objects. For example:

[
  {
    "id": "node-red/sentiment",
    "name": "sentiment",
    "types": [
      "sentiment"
    ],
    "enabled": true,
    "module": "node-red"
    "version": "0.10.6"
  }
]

Accept: text/html

This returns the HTML content for all of the installed nodes as a single response.