curl https://qstash.upstash.io/v1/keys \
-H "Authorization: Bearer <token>"
{
"current": "sig_123",
"next": "sig_456"
}
Keys
Get Signing Keys
This endpoint returns your current and next signing keys.
GET
/
v1
/
keys
curl https://qstash.upstash.io/v1/keys \
-H "Authorization: Bearer <token>"
{
"current": "sig_123",
"next": "sig_456"
}
Response
string
required
Current signing key is used to sign all messages before they are sent to the
destination.
string
required
Next signing key will be used to sign messages after you have rotated your
signing keys.
curl https://qstash.upstash.io/v1/keys \
-H "Authorization: Bearer <token>"
{
"current": "sig_123",
"next": "sig_456"
}
Was this page helpful?