Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

102
Views
Can you send multiple fetch post requests simultaneously to avoid rate limits?

Scenario: I have a script that uses node-fetch to GET a list of 200 users from a website, then update a variable for those users with POST to give/remove access to a restricted area. It does this for 8 different areas.

GET returns 30 users at a time, so it takes 7 requests. POST is currently handling one user at a time, so 200 requests. You can see this adds up quickly.

Question: Is there a way to send multiple POST requests at once to avoid the rate limit set by the website? They don't appear to have an option to pass an array of users to add/remove their access. Ideally I'd like to do something like:

let scriptToAddUser = [an array of body elements that individually add a single user];
let res = await fetch (...., {
  ...
  body: scriptToAddUser
}

Or maybe something using .then()?

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!