Skip to content
Torii docs

Get OIDC discovery document

GET
/.well-known/openid-configuration
curl --request GET \
--url https://your-app.torii.so/.well-known/openid-configuration

Returns OIDC discovery metadata for the environment identified by the Host header. The jwks_uri field points to the same environment’s JWKS endpoint, enabling networkless JWT verification in standard JWT libraries.

Host
string

OK

Media type application/json
object
issuer
required
string
jwksUri
required
string
responseTypesSupported
required
Array<string>
idTokenSigningAlgValuesSupported
required
Array<string>
subjectTypesSupported
required
Array<string>
Example generated
{
"issuer": "example",
"jwksUri": "example",
"responseTypesSupported": [
"example"
],
"idTokenSigningAlgValuesSupported": [
"example"
],
"subjectTypesSupported": [
"example"
]
}