- Overall
- Quickstarts
- Features
- Integrations
- How To
- REST API
- Authentication
- Messages
- URL Groups
- Flow Control
- Queues
- Schedules
- Signing Keys
- Logs
- Events (Deprecated)
- Dead Letter Queues
- LLM
- API Rate Limit Response
- SDKs
Flow Control
List Flow-Control Keys
List all Flow Control keys
GET
/
v2
/
flowControl
curl -X GET https://qstash.upstash.io/v2/flowControl/ -H "Authorization: Bearer <token>"
{
"flowControls": [
{
"flowControlKey": "<string>",
"waitListSize": 123
}
]
}
Response
The key of the flow control. See the flow control for more details.
The number of messages in the wait list that waits for parallelism
set in the flow control.
curl -X GET https://qstash.upstash.io/v2/flowControl/ -H "Authorization: Bearer <token>"
Was this page helpful?
curl -X GET https://qstash.upstash.io/v2/flowControl/ -H "Authorization: Bearer <token>"
{
"flowControls": [
{
"flowControlKey": "<string>",
"waitListSize": 123
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.