Bandwidth cost as traffic grows
What egress costs if request volume doubles, 5x or 10x.
Home / Dev & AI / API & Backend Cost / API Bandwidth Calculator
API & Backend Cost
Estimate the data your API moves and what egress will cost. Enter monthly requests, average payload size and egress rate, and see total GB, TB and the monthly bill.
Data transferred / month
$0
Bandwidth cost as traffic grows
What egress costs if request volume doubles, 5x or 10x.
Bandwidth is one of the most underestimated costs in running an API. Every response you send counts as egress, and cloud providers charge per gigabyte that leaves their network. A small payload feels free, but multiply it by millions of requests and the data volume, and the bill, becomes significant.
This API bandwidth calculator multiplies your monthly requests by the average payload size to get total data transfer in gigabytes and terabytes, then applies your egress rate for a monthly cost. It also projects how bandwidth spend grows as traffic climbs.
For 20,000,000 requests a month at 80 KB average payload, data is 20,000,000 × 80 ÷ 1,000,000 = 1,600 GB, or 1.6 TB. At $0.09 per GB that is about $144 a month in egress.
Multiply monthly requests by the average payload size in KB, then divide by one million to get gigabytes. Multiply by your egress rate for the cost.
Any data leaving the provider network, which for an API is your responses to clients. Inbound requests are usually free or much cheaper.
Compress responses with gzip or brotli, trim unnecessary fields, paginate large results, and serve static or cacheable content through a CDN with lower egress rates.
Often yes. CDN egress can be a third to a half of direct cloud egress, and caching means many responses never touch your origin.
They are 2026 estimates. Egress pricing varies by provider, region and volume, so confirm your rate for an exact figure.