{
  "name": "resend-webhook",
  "description": "Cloudflare Worker for Resend webhook processing and LabEx automation.",
  "version": "1.0",
  "endpoints": [
    {
      "method": "GET",
      "path": "/",
      "description": "Returns this API documentation as JSON."
    },
    {
      "method": "POST",
      "path": "/received",
      "description": "Receives signed Resend webhook events and dispatches them by recipient.",
      "headers": [
        "svix-id",
        "svix-timestamp",
        "svix-signature",
        "content-type: application/json"
      ],
      "recipients": [
        "comment-reply@mail.labex.io",
        "active@mail.labex.io"
      ]
    }
  ],
  "examples": {
    "documentation": "curl https://resend-webhook.labex.app/",
    "webhook": "curl -X POST https://resend-webhook.labex.app/received"
  }
}