API ReferenceapiidentityGET /.well-known/jwks.json

GET /.well-known/jwks.json

Service: identity · operationId: (none)

JSON Web Key Set — public keys for JWT verification

Required scopes

(no scope declared — review service config)

Responses

200 JWKS document containing public signing keys

{
  "type": "object",
  "properties": {
    "keys": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "kty": {
            "type": "string"
          },
          "crv": {
            "type": "string"
          },
          "x": {
            "type": "string"
          },
          "kid": {
            "type": "string"
          },
          "alg": {
            "type": "string"
          },
          "use": {
            "type": "string"
          }
        },
        "required": [
          "kty",
          "kid",
          "alg",
          "use"
        ]
      }
    }
  },
  "required": [
    "keys"
  ]
}

Example

curl -X GET https://identity.platform.loop.health/.well-known/jwks.json \
  -H "Authorization: Bearer $ACCESS_TOKEN"