The request usually returns a json object and a status code of 200.
Recently, approx. 24 hrs ago, the node now only returns an empty string with a status code of 429 indicating too many requests, however when I use the same url in a browser, the expected data is returned.
Any clues on what might be causing this and how to correct it would be appreciated.
add a debug immediately before the http-request node to verify you are not hammering it causing the 429.
Also, if you add a catch node, you can output the error to a debug set to show the "full msg object" here you should be able to see the rate limit headers (if set) to understand when you can next call the endpoint. You could automate a cool-down guard based on the values!
And as luck would have it, with no apparent change to the input, the process is now working again.
It may have been a glitch on the service provider's side but thank you all for your assistance in any case.
I will watch it for a few days and then mark the topic as solved.
Look at the msg.headers after the http-request, a 429 error is likely to include details about what the rate limit is and when you can access it again.
Thank you all for your thoughts. The solcast help desk just confirmed that the problem was on their end as a result of another user making too many requests.
But i will pay more attention to the information in the headers from now on.