Skip to main content
GET
/
v1
/
webhooks
/
signing-key
Get Webhook Signing Key
curl --request GET \
  --url https://app.uselamina.ai/v1/webhooks/signing-key
{
  "keys": [
    {
      "kty": "OKP",
      "crv": "Ed25519",
      "x": "WR64jqplhAMsH7qC20Mqhm59yZjkiHfzfy6vCMAeIOk",
      "kid": "lamina-webhook-v1",
      "use": "sig",
      "alg": "EdDSA"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.uselamina.ai/llms.txt

Use this file to discover all available pages before exploring further.

Returns the ED25519 public key for verifying webhook signatures. Cache this key. It rarely changes, and your webhook handler should use it to verify that incoming callbacks are genuinely from Lamina and have not been tampered with.

Response

Public key in JWK format

keys
object[]