Signing Keys
Get Signing Keys
Retrieve your current and next signing keys
GET/v2/keys
cURL
curl --request GET \
--url https://qstash-{region}.upstash.io/v2/keys \
--header 'Authorization: Bearer <token>'200Response
{
"current": "<string>",
"next": "<string>"
}Authorization
Authorizationheaderstringrequired
Bearer authentication header of the form Bearer <token>.
Response
200 — Signing keys retrieved successfully
currentstring
The current signing key.
nextstring
The next signing key.