# Get Global Parallelism

> Returns the current global parallelism usage across all flow control keys

## Endpoint

`GET https://qstash-{region}.upstash.io/v2/globalParallelism`

## Responses

### 200 - Global parallelism info retrieved successfully

- `parallelismMax` (integer): The configured maximum global parallelism
- `parallelismCount` (integer): The current number of messages running globally in parallel

## cURL

```bash
curl --request GET \
  --url https://qstash-{region}.upstash.io/v2/globalParallelism \
  --header 'Authorization: Bearer <token>'
```
