Domainee Docs
Webhook Endpoints

List webhook endpoints

GET /v1/webhook-endpoints — every endpoint in your workspace.

GET /v1/webhook-endpoints

Returns every webhook endpoint in your workspace. The secret is omitted from list responses (we never echo secrets twice — see Create endpoint for the one-time reveal).

Request

curl https://api.domainee.dev/v1/webhook-endpoints \
  -H "Authorization: Bearer $DOMAINEE_API_KEY"

Response — 200 OK

{
  "endpoints": [
    {
      "id": "0d8ab7f2-...",
      "workspaceId": "cb9e05b7-...",
      "url": "https://your-app.com/webhooks/domainee",
      "events": ["domain.verified", "domain.failed"],
      "enabled": true,
      "createdAt": "2026-05-05T11:39:12.884Z"
    }
  ]
}

If you've lost the signing secret, delete the endpoint and recreate it.

On this page