API Rate Limit Calculator

Convert rate limits across units, calculate delay between requests for your concurrency, and get a ready-to-use Node.js throttle snippet. Presets for popular APIs.

Rate Analysis

Per second

1.667

Per minute

100

Per hour

6,000

Per day

144,000

Min interval between requests600.0 ms
Delay per worker (1 concurrent)600.0 ms
Burst refill time (10 tokens)6.00 s

Recommended throttle (Node.js)

// Throttle to 1.667 req/s
const DELAY_MS = 600; // ms between calls per worker
const sleep = (ms) => new Promise(r => setTimeout(r, ms));

async function throttledRequest(fn) {
  const result = await fn();
  await sleep(DELAY_MS);
  return result;
}
Share this tool: X / Twitter LinkedIn

Related Products

on Gumroad

More Free Tools

Get weekly developer tips

Tool guides, productivity playbooks & AI tricks. Free. No spam.

DevPlaybook Pro 7 days free

Unlock AI-Powered Dev Tools

  • ⚡ AI Code Review, Doc Generator & SQL Builder
  • ⚡ All premium templates & early access
  • ⚡ Member discounts on Gumroad products
Start Free Trial →

$9/mo after trial · Cancel anytime

Want the full toolkit?

Get DevPlaybook Pro

Every template, guide, boilerplate, and automation script in one bundle. 13 premium products — grab them all at once and save big.

$79
$241 separately Save $162 (67% off)
Get DevPlaybook Pro — $79 →

MIT licensed · Instant download · No subscription

See what's included → Browse all deals →