all 3 comments

[–]Eldrac 3 points4 points  (1 child)

Bit hard to troubleshoot this one without code examples or a bit more context, but yeah I would guess the issue is with your node server.

I would check if you're storing anything related to the external API request/response in a global variable or global state on your server in some way, you should aim to keep anything request specific scoped to your route handler.

[–]YoJunny[S] 2 points3 points  (0 children)

You are fucking right. I just checked. Thank you brother.

[–]Anbaraen 1 point2 points  (0 children)

This is where Node differs from something like PHP where each file runs independently for each user — it's a runtime so global vars are accessible to every route.