I try to connect with my server inside Quantconnet framework (https://www.quantconnect.com/). For some reason, they allow sending GET requests from their web framework (server) but not POST requests.
I would like to set up a proxy API in the middle, that accepts GET requests, and then transforms those into POST request as the final destination.
The problem is that, as I know, I can't send large vector of values (say of length 1000) in the body of GET requests, so it can't be followed to POST request?
In nutshell, my question is: Is it possible to make API endpoint that accepts GET requests and transform it to POST, but accepts vector of numbers as parameter?