Skip to content

OAuth JWKS

Returns OpenASA public signing keys for JWT verification.

Method and path

  • Method: GET
  • Path: /oauth/jwks
  • Auth: public endpoint

Success response

200 OK

{
  "keys": [
    {
      "kty": "RSA",
      "kid": "asa-local-dev",
      "alg": "RS256",
      "use": "sig",
      "n": "<base64url-modulus>",
      "e": "AQAB"
    }
  ]
}

Errors

  • 500: signing key unavailable