Create sensor import HTTP value

Hi everyone,
I’m trying to import onto HA the values ​​detected by the Zehneder thermostat that I can read from the Zehnder Touch.
I read the temperature values ​​in this way:
temproom1 http://192.168.1.253/cgi-bin/getValues.exe?PDP,,R2201,C
temproom2 http://192.168.1.253/cgi-bin/getValues.exe?PDP,,R2202,C
temproom3 http://192.168.1.253/cgi-bin/getValues.exe?PDP,,R2203,C

the page gives me a numerical value like 24.7

I would like to create several entities by reading the value every xx minutes.

in the same way I would like to read the humidity…
humidityroom1 http://192.168.1.253/cgi-bin/getValues.exe?PDP,,R2401,C
humidityroom2 http://192.168.1.253/cgi-bin/getValues.exe?PDP,,R2402,C
humidityroom3 http://192.168.1.253/cgi-bin/getValues.exe?PDP,,R2403,C

the page gives me a numerical value like 62.4

How can I integrate these values? What integration can I use to import a value into a custom entity?

Thank you all for your kindness.

Guido

If that is the only value you get from those URLs then it should be an easy rest sensor.
RESTful Sensor - Home Assistant (home-assistant.io)

Thanks for your help
everything works correctly.

Guido