Skip to content
Torii docs

Get JSON Web Key Set

GET
/_torii/.well-known/jwks.json
curl --request GET \
--url https://your-app.torii.so/_torii/.well-known/jwks.json

Returns the public signing keys for the environment identified by the Host header. Customers use this to verify JWTs locally without a round trip to the server.

Host
string

OK

Media type application/json
object
keys
required
Array<object>
object
kty
required
string
crv
required
string
alg
required
string
use
required
string
kid
required
string
x
required
string
y
required
string
Example generated
{
"keys": [
{
"kty": "example",
"crv": "example",
"alg": "example",
"use": "example",
"kid": "example",
"x": "example",
"y": "example"
}
]
}