Beginner: nod-red-contrib-tibber-api : where can i find HOME ID?

Trying to run my first flow, getting Tibber energydata using https://flows.nodered.org/node/node-red-contrib-tibber-api

copied from above site : Tibber Feed node (tibber-feed)

tibber-feed

Realtime power consuption data from Tibber Pulse. Provide API token, Home ID and select what kind of information you want to retrieve.

I have entered my Tibber API code (I have) but cannot figure out where to find the HOME ID code?

All help is welcome!

ok, assuming you have not found the answer yet….
’id’ is part of the data within ‘homes’ so what you can do on the Tibber API website is issue the following command in the API explorer (Tibber Developer)

{
viewer {
homes {
id
}
}
}

This will return the id you are looking for in a format like this: “id”: “c4d222ea-ef5d-111f-ccc12ca11111”
(this is a made up id)

Indeed, I did not find the answer yet, so many thanks for this!