Get a list of routines from Alexa?

Using node-red-contrib-alexa-remote2-applestrudel (5.0.55) in a Home Assistant Node-Red add-on.
Is there a way to list all routines exposed by Alexa to Node Red?

Use the Alexa Other node, select GET. and under WHAT? select Automation Routines. Inject to a debug node and paste the resulting data to a JSON editor to analyse.....

Thanks for the tip. I tried this but get an "Error: Invalid sequence node"
Can you look at my flow and tell me where I went wrong?

[{"id":"19d9acde0f56e031","type":"inject","z":"5d1b0398.99236c","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":120,"y":200,"wires":[["c8bfa98b532c239e"]]},{"id":"5c2cb414f1f4dfff","type":"debug","z":"5d1b0398.99236c","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":690,"y":200,"wires":},{"id":"c8bfa98b532c239e","type":"function","z":"5d1b0398.99236c","name":"function 1","func":"msg.payload = {\n option: "get",\n value: {\n what: "automationRoutines"\n }\n};\nreturn msg;\n","outputs":1,"timeout":0,"noerr":0,"initialize":"","finalize":"","libs":,"x":300,"y":200,"wires":[["e134f97ba382dbac"]]},{"id":"e134f97ba382dbac","type":"alexa-remote-routine","z":"5d1b0398.99236c","name":"","account":"4627f780.84a6a8","routineNode":{"type":"custom","payload":{"type":"msg","value":"payload"}},"x":480,"y":200,"wires":[["5c2cb414f1f4dfff"]]},{"id":"4627f780.84a6a8","type":"alexa-remote-account","name":"","authMethod":"proxy","proxyOwnIp":"192.168.1.57","proxyPort":"3456","cookieFile":"alexa.txt","refreshInterval":"1","alexaServiceHost":"pitangui.amazon.com","amazonPage":"amazon.com","acceptLanguage":"en-US","userAgent":"","autoInit":"off"},{"id":"767cea8a456df408","type":"global-config","env":,"modules":{"node-red-contrib-alexa-remote2-applestrudel":"5.0.55"}}]

A quick look shows an error for importing, but in any case there´s initially little to show in a flow here -
flow

Summary
[
    {
        "id": "def7600210803eeb",
        "type": "alexa-remote-other",
        "z": "21d84dbb515216e9",
        "name": "",
        "account": "c8738129.d902c",
        "config": {
            "option": "get",
            "value": {
                "what": "automationRoutines"
            }
        },
        "x": 490,
        "y": 560,
        "wires": [
            [
                "0abbf3c1275e6f45"
            ]
        ]
    },
    {
        "id": "0abbf3c1275e6f45",
        "type": "debug",
        "z": "21d84dbb515216e9",
        "name": "debug 2742",
        "active": true,
        "tosidebar": true,
        "console": false,
        "tostatus": false,
        "complete": "payload",
        "targetType": "msg",
        "statusVal": "",
        "statusType": "auto",
        "x": 890,
        "y": 560,
        "wires": []
    },
    {
        "id": "4dfc8442c13e9286",
        "type": "inject",
        "z": "21d84dbb515216e9",
        "name": "",
        "props": [
            {
                "p": "payload"
            },
            {
                "p": "topic",
                "vt": "str"
            }
        ],
        "repeat": "",
        "crontab": "",
        "once": false,
        "onceDelay": 0.1,
        "topic": "",
        "payload": "",
        "payloadType": "date",
        "x": 195,
        "y": 560,
        "wires": [
            [
                "def7600210803eeb"
            ]
        ]
    },
    {
        "id": "2036e74dbc3ac86a",
        "type": "comment",
        "z": "21d84dbb515216e9",
        "name": "Identify Alexa Routines (JSON)",
        "info": "",
        "x": 215,
        "y": 505,
        "wires": []
    },
    {
        "id": "c8738129.d902c",
        "type": "alexa-remote-account",
        "name": "alexa remote 2",
        "authMethod": "proxy",
        "proxyOwnIp": "192.168.0.85",
        "proxyPort": "3456",
        "cookieFile": "/data/context/alexa.json",
        "refreshInterval": "0",
        "alexaServiceHost": "alexa.amazon.es",
        "pushDispatchHost": "",
        "amazonPage": "amazon.es",
        "acceptLanguage": "es-ES",
        "onKeywordInLanguage": "",
        "userAgent": "",
        "usePushConnection": "on",
        "autoInit": "on"
    },
    {
        "id": "486f598734bd6e58",
        "type": "global-config",
        "env": [],
        "modules": {
            "node-red-contrib-alexa-remote2-applestrudel": "5.0.55"
        }
    }
]

Once identified use the Alexa Routine node to execute -