You can access them either using the Event "thrown" when a Reading is updated:
notify/DOIF/...
then notify/DOIF/... react on that "trigger" and in $EVENT ($EVTPART0 $EVTPART1 ...) you get the "content" of the Event

based on that you can do some "automation"...
easiest way to "get" a notify/DOIF is to open Eventmonitor (set a filter) and wait for the Event of interest, mark that Event and then click "create/modify" and then a DOIF/notify could be created...
https://fhem.de/commandref.html#inotifyhttps://fhem.de/commandref.html#DOIFEDIT: there are many more helpful links (Wiki) etc. but they are all in German...
if you "just" want to read out the value when in programming in Perl:
ReadingsVal("DeviceName","ReadingName","DefaultValueIfReadingDoesNotExist")
or if you just want the "numeric part":
ReadingsNum("DeviceName","ReadingName",DefaultValueIfReadingDoesNotExist)
in your case (example):
ReadingsNum("CT50","t_cool",0)
EDIT: and here you go (getting back to your last question) the next Device will be also a HTTPMOD but named e.g. CT51 with the same Readings (if it is the exact same type "sending" the exact same data). And: naming is essential for further automation things! So e.g to be able to use DevSpec (a way to "get" certain devices with "common settings" like same Type or following a naming convention. E.g. set CT5.* on will set all devices named "something" with CT5 to state on [of course teh device has to "know" that command

]. So it will set CT50 and CT51 and so forth to "on"... And as fhem/Perl and DevSpec has a lot to do with RegEx to have "Points" in names is not the best idea

So something like CT50.SubSomething.AnotherThing Better maybe underscore CT50_SubSomething_AnotherThing (if you want to "categorize" things/devices by names)...
https://fhem.de/commandref.html#devspecEDIT: in order to "get to Perl" in fhem you just use brakets { "Perl inside" } when in a notify, e.g.: define nExample notify Trigger-RegEx {HereYouCanGoWithPerl}
If you then need fhem "functionality" inside Perl you can get "back" to fhem using the fhem-command: {HereYouAreInPerl; fhem("now you can do fhem commands here"); }

Regards, Joachim