Can I determine which nodes in my Palette are externally downloaded and which are inherent to Node-RED via the HTTP Admin API?

If I query GET /nodes I get an array of all the nodes in the node-red editor realm. Is there a way to determine which nodes were externally installed in the Palette?

I tried observing the Network Debugging tool in the browser but there isn't any relevant call when clicking on the User Settings -> Pallete beyond the catalogue.nodered.org

Okay perhaps found the distinction. If the nodes are core to nodered then the module value will be node-red and if external it will be the name of the external node.

Example

curl http://localhost/nodered/nodes | jq ".[].module"

will provide all the nodes' filtered module values

"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red"
"node-red-contrib-influxdb"
"node-red-contrib-postgresql"

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.