Is there an HTTP API where I can ask for Pings for Integration Tests?

Is there an HTTP GET API within the node-red API reference which I could use for some integrations tests just to know if node-red is up and running for example via a docker-compose stack or a standalone instance on a machine?

Something of the likes of /ping which may return a HTTP 200 Response based on whether the instance is available or not.

I went through the node-red Admin HTTP API and I couldn't find something I can use to verify integration with apps

A simple endpoint of /ping is easy to setup and it provides you with a complete end-to-end test (as in not only is the endpoint available, but the flows are actually running.

image