# Get Signing Keys

> Retrieve your current and next signing keys

## Endpoint

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

## Responses

### 200 - Signing keys retrieved successfully

- `current` (string): The current signing key.
- `next` (string): The next signing key.

## cURL

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