Verified limit lookup

Azure Functions HTTP Response Timeout

Azure Functions HTTP Response Timeout, verified against Azure Functions's official documentation with scope, implementation impact, caveats, and a direct check.

Verified Aug 22, 20261 official source
Quick answer

Azure Functions documents http load-balancer response ceiling as 230 seconds. The HTTP response cap applies even when the hosting plan permits longer background execution.

Verified Aug 22, 2026Official source

Current limits

ConstraintCurrent valueScopeVerified source
HTTP load-balancer response ceilingThe HTTP response cap applies even when the hosting plan permits longer background execution.230 secondsHTTP-triggered functionsMicrosoftAug 22, 2026

Why does this limit matter?

An unbounded functionTimeout does not make a synchronous HTTP request wait indefinitely.

This value is scoped to HTTP-triggered functions; a different plan, runtime, model, endpoint, region, or account can produce a different effective constraint.

What should you check?

  1. Measure time to first final response and design long work around a durable status endpoint.
  2. Confirm the exact plan, model, runtime, endpoint, region, and account that serve the failing workload.
  3. Record the observed value, response headers or configuration, timestamp, and source without logging secrets.

Important caveats

  • Use asynchronous patterns for work that intentionally exceeds the load-balancer window.
  • Treat the official source and live account configuration as authoritative if they differ from this verified snapshot.
HyperObserve reports the documented platform constraint. Your application, SDK, gateway, provider, region, or account can impose a lower effective limit.
Related

Related references and tools

Found an outdated limit? Report it.