> ## Documentation Index
> Fetch the complete documentation index at: https://moneykit.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get JSON Web Key Set

> The JSON Web Key Set (JWKS) is a set of keys containing the public keys used to verify webhook JSON Web Tokens (JWT) issued by MoneyKit webhooks.

<div className="tailwind hidden">
  ```
  curl -i -X GET \
    http://localhost:8080/.well-known/jwks.json \
    -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
    -H 'moneykit-version: 2023-02-18'
  ```

  ```
  {
    "keys": [
      {
        "crv": "P-256",
        "x": "KqPQ0SAYk3Zkizuap0JP6r2XcdGKSaYBsVHJgyLyOnA",
        "y": "627ZZERxpVBwpjpK5U2bVboOJ2AkI0Iz_J1kmYKl7Bc",
        "kty": "EC",
        "alg": "ES256",
        "use": "sig",
        "kid": "xMtcLMEWp9GF-5A_COcTypt-tq9hkRa0oOfaruFF"
      }
    ]
  }
  ```
</div>
