Skip to main content
GET
/
.well-known
/
jwks.json
Webhook JWKS
curl --request GET \
  --url https://api.waterfall.io/.well-known/jwks.json
{
  "keys": [
    {
      "kty": "OKP",
      "crv": "Ed25519",
      "kid": "webhook-key-2026-06",
      "use": "sig",
      "alg": "EdDSA",
      "x": "Q7HQWfd9_2hmzNwwBqqJ2l7CkDFv3cAvQ44asbkD-MA"
    }
  ]
}
Use the keys returned here to verify the X-Webhook-Signature header on Waterfall webhook deliveries. See Webhook Verification for the full verification protocol and ready-to-copy verifier code.

Response

Waterfall webhook verification keys.

Public JSON Web Key Set used to verify Waterfall webhook signatures.

keys
object[]
required
Minimum array length: 1
Example:
[
{
"kty": "OKP",
"crv": "Ed25519",
"kid": "webhook-key-2026-06",
"use": "sig",
"alg": "EdDSA",
"x": "Q7HQWfd9_2hmzNwwBqqJ2l7CkDFv3cAvQ44asbkD-MA"
}
]