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
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;
}Related Products
on GumroadDevToolkit Starter Kit
A ready-to-deploy developer tools website with 12 built-in tools. Astro + Preact + Tailwind. Deploy to Cloudflare Pages for free. Built-in SEO, dark mode, and ad-ready layout.
Buy on Gumroad →Developer Productivity Bundle
Stop rebuilding the same setup every project. 51 VSCode snippets, 40 Git aliases, 5 Docker Compose stacks, 5 GitHub Actions workflows, 5 README templates, and a dotfiles kit. Set up a professional dev environment in under an hour.
Buy on Gumroad →AI Prompt Engineering Toolkit
Production-ready prompt templates, chain-of-thought workflows, and API integration code for GPT-4, Claude, Gemini, and any instruction-following LLM.
Buy on Gumroad →More Free Tools
Related Articles
API Testing in 2026: From cURL to Automated Test Suites
Complete guide to API testing: starting with cURL basics, moving to Postman/Insomnia, then automated test suites with JavaScript and Python. Includes real API examples.
Base64 Encoder Decoder: Complete Guide for Developers
Everything developers need to know about Base64 encoding and decoding. How it works, when to use it, common pitfalls, and a free online Base64 encoder decoder tool.
The Complete JSON Formatter Guide: Validate, Pretty Print, and Debug JSON Like a Pro
Learn how to use JSON formatter tools to validate, pretty print, and debug JSON data. Includes keyboard shortcuts, common errors, and integration tips for developers.
Get weekly developer tips
Tool guides, productivity playbooks & AI tricks. Free. No spam.
Unlock AI-Powered Dev Tools
- ⚡ AI Code Review, Doc Generator & SQL Builder
- ⚡ All premium templates & early access
- ⚡ Member discounts on Gumroad products
$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.
MIT licensed · Instant download · No subscription
See what's included → Browse all deals →