Documentation Index
Fetch the complete documentation index at: https://upstash-cloud-4245.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Request
The key of the flow control. See the flow control for more details.
Response
The key of the flow control.
The number of messages in the wait list that waits for parallelism/rate set in the flow control.
The configured maximum number of messages allowed to run concurrently, if parallelism is set.
The current number of messages running in parallel.
The configured maximum number of messages allowed per rate period, if rate limiting is set.
The number of messages dispatched in the current rate period.
The length of the rate period in seconds.
Unix timestamp (seconds) when the current rate period started.
curl -X GET https://qstash.upstash.io/v2/flowControl/YOUR_FLOW_CONTROL_KEY -H "Authorization: Bearer <token>"
{
"flowControlKey": "YOUR_FLOW_CONTROL_KEY",
"waitListSize": 5,
"parallelismMax": 10,
"parallelismCount": 3,
"rateMax": 100,
"rateCount": 42,
"ratePeriod": 60,
"ratePeriodStart": 1708000000
}