v28

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-05-2887246443.7 KB

Get the current concurrency and concurrency limit of the org

get/get-concurrency

Response

Successfully retrieved concurrency information.

current_concurrencyinteger

The current concurrency (amount of ongoing calls) of the org.

concurrency_limitinteger

The total concurrency limit (at max how many ongoing calls one can make) of the org. This should be the sum of base_concurrency and purchased_concurrency.

base_concurrencyinteger

The free concurrency limit of the org.

purchased_concurrencyinteger

The amount of concurrency that the org has already purchased.

concurrency_purchase_limitinteger

The maximum amount of concurrency that the org can purchase.

remaining_purchase_limitinteger

The remaining amount of concurrency that the org can purchase. This is the difference between concurrency_purchase_limit and purchased_concurrency.

reserved_inbound_concurrencyinteger

Number of normal concurrency slots reserved for inbound calls.

concurrency_burst_enabledboolean

Whether burst concurrency mode is enabled. When enabled, allows the org to exceed their normal concurrency limit with a surcharge.

concurrency_burst_limitinteger

The maximum concurrency limit when burst mode is enabled. This is calculated as min(3x normal limit, normal limit + 300). Returns 0 if burst mode is disabled.

Example response

{
  "current_concurrency": 10,
  "concurrency_limit": 100,
  "base_concurrency": 20,
  "purchased_concurrency": 80,
  "concurrency_purchase_limit": 100,
  "remaining_purchase_limit": 20,
  "reserved_inbound_concurrency": 10,
  "concurrency_burst_enabled": true,
  "concurrency_burst_limit": 60
}