One option would be to create a loop and use the Variable Condition Loop node at the end of the loop which checks if the status from the GET Request node is 200 (which means that the request was fulfilled).
I have some what similar issue in GET Request node
I have a workflow with POST request node that gets me a json output with access_token as one of the keys. How do I pass this access_token to a GET request where I need to use its value in a Request header such as "Authorization" as Bearer access_token
If I understand it correctly what you want to do is extract the access_token from the json, make it a Flow variable (See e.g. Table Row To Flow Variable node), then in the dialog of the GET Request node in the tab "Request Headers" select "Add header parameter", enter the correct key, select the variable you have created as Header value and select Type "Flow variable".