@alvinstewart I have not yet tried bakman2's suggested flow on my thread (the one he linked) but it looks like it should work.
This is what I came up with for extracting a single data point and pub'ing to two MQTT topics (Celsius & Fahrenheit). Just change the apiKey and applicationKey in the http request node and setup the mqtt output nodes how you want them.
[{"id":"604a1b95.f3fb34","type":"inject","z":"77205ee4.09f8e","name":"60s","topic":"","payload":"","payloadType":"date","repeat":"60","crontab":"","once":false,"onceDelay":0.1,"x":90,"y":160,"wires":[["56a63bcc.af6da4"]]},{"id":"56a63bcc.af6da4","type":"http request","z":"77205ee4.09f8e","name":"get data for Farm House","method":"GET","ret":"obj","paytoqs":false,"url":"https://api.ambientweather.net/v1/devices/00:0E:C6:20:10:43?apiKey=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&applicationKey=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&endDate=&limit=1","tls":"","proxy":"","authType":"","x":190,"y":200,"wires":[["80e467fa.33a2f8"]]},{"id":"e42199a5.b72398","type":"debug","z":"77205ee4.09f8e","name":"","active":false,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","x":630,"y":200,"wires":[]},{"id":"79d1e797.326718","type":"mqtt out","z":"77205ee4.09f8e","name":"","topic":"weather/farm/house/tempinf","qos":"2","retain":"true","broker":"ad7b7ee9.73295","x":880,"y":160,"wires":[]},{"id":"80e467fa.33a2f8","type":"unit-converter","z":"77205ee4.09f8e","category":"temperature","inputUnit":"F","outputUnit":"C","inputField":"payload.0.tempinf","outputField":"payload.0.tempinc","inputFieldType":"msg","outputFieldType":"msg","name":"","x":340,"y":160,"wires":[["b89206e3.aa4768"]]},{"id":"49c76923.0260d8","type":"mqtt out","z":"77205ee4.09f8e","name":"","topic":"weather/farm/house/tempinc","qos":"2","retain":"true","broker":"ad7b7ee9.73295","x":880,"y":240,"wires":[]},{"id":"b89206e3.aa4768","type":"change","z":"77205ee4.09f8e","name":"set global var","rules":[{"t":"set","p":"payload.0.tempinc","pt":"msg","to":"$round(payload[0].tempinc, 1)","tot":"jsonata"},{"t":"set","p":"weather.farm.house.tempinc","pt":"global","to":"payload.0.tempinc","tot":"msg"},{"t":"set","p":"weather.farm.house.tempinf","pt":"global","to":"payload.0.tempinf","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":450,"y":200,"wires":[["e42199a5.b72398","3fc88fb0.aa8e6","6fbe72f4.84732c"]]},{"id":"3fc88fb0.aa8e6","type":"change","z":"77205ee4.09f8e","name":"","rules":[{"t":"set","p":"payload","pt":"msg","to":"payload.0.tempinf","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":640,"y":160,"wires":[["79d1e797.326718"]]},{"id":"6fbe72f4.84732c","type":"change","z":"77205ee4.09f8e","name":"","rules":[{"t":"set","p":"payload","pt":"msg","to":"payload.0.tempinc","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":640,"y":240,"wires":[["49c76923.0260d8"]]},{"id":"ad7b7ee9.73295","type":"mqtt-broker","z":"","name":"local mosquitto","broker":"192.168.12.253","port":"1883","clientid":"node-red-local","usetls":false,"compatmode":true,"keepalive":"60","cleansession":true,"birthTopic":"","birthQos":"0","birthPayload":"","closeTopic":"","closeQos":"0","closePayload":"","willTopic":"","willQos":"0","willPayload":""}]