GET
/
{tenant_id}
/
.well-known
/
jwks.json
curl --request GET \
  --url https://passkeys.hanko.io/{tenant_id}/.well-known/jwks.json
{
  "keys": [
    {
      "alg": [
        "RS256"
      ],
      "e": [
        "AAAA"
      ],
      "kid": [
        "483b2499-1ed7-4325-94e3-97e8118ceee9"
      ],
      "kty": [
        "RSA"
      ],
      "n": "<string>",
      "use": [
        "sig"
      ]
    }
  ]
}

Path Parameters

tenant_id
string
required

UUID of the tenant

Response

200 - application/json
keys
object[]