Does HTTP request node, without batch execution configured, make the requests sequentially or in parallel?
Node.js has threads for IO operations so it’s technically possible to make requests in parallel, but it’s not mentioned in the Request node docs and it’s not trivial to test.
Asking to prepare an error report to a service provider.
They are not parallelized, they have been sent one by one. You can’t see it because the payload is too small to see the difference (it will be ~ 12 ms between the first and last request).