@florianherzog @rjwilkinson10
Thank you both for the feedback.

As I am not on the paid version yet since I’m still in QA, API scheduling is not available.
I will consider already starting a paid subscription for this, unless its possible to build with the free-version functionalities?

I kind of needed to shift my requirement as ChatGPT does not allow a lot of characters per prompt. So the idea now is to reform the response JSON to either one of below formats (just more concise than the original output) and use that variable for an API call to ChatGPT;

Format 1:
[
{
“name”: “Hotel A”,
“price”: 150,
“currency”: “USD”,
“reviewScore”: 8.5,
“checkin”: {
“from”: “14:00”,
“until”: “23:00”
}
},

Or Format 2 if format 1 is still really going to exceed max nr of characters:
[
[“Hotel A, 150 USD, 8.5”],
[“Hotel B, 200 USD, 9.0”]
]

Do you have an idea how to format the JSON to either one of these in the workflow? Is it still required to do API scheduling or is there other functionalities I can use? I have tried some JSON plugins but cant get it to work properly. :slight_smile: