There is an API endpoint which streams results as it gets them. E.g.:
GET /results HTTP/1.1
HTTP/1.1 200 OK
Content-Type:test/plain
Content-Transfer-Encoding:chunked
C;
{"foo":"bar"}
...10 minutes later...
D;
{"bar":"baz"}
0;
Is there any way to get {"foo":"bar"} before without waiting ten minutes for the rest of the page to be sent?>