# Returns the JSON Web Key Set (JWKS) for a tenant

Returns the JWKS, a set of keys containing the public keys used to verify any JWT token issued for this tenant and signed using the RS256 signing algorithm.

Endpoint: GET /.well-known/jwks.json
Security: BasicAuth, Bearer

## Response 200 fields (application/json):

  - `alg` (string)
    Example: "RS256"

  - `kty` (string)
    Example: "RSA"

  - `use` (string)
    Example: "SIG"

  - `n` (string)
    Example: "0YqfhT0s81SG9Y3g721pUL9s4pqe4WVqSX..."

  - `e` (string)
    Example: "AQAB"

  - `kid` (string)
    Example: "Ujgt9tDI..."

  - `x5t` (string)
    Example: "IwW06t6-x..."

  - `x5c` (array)
    Example: ["MIIDDzCCAfegAwIBAgIJdbaBZQgvHYZ6MA0..."]


