propgate docs

API reference › WebhooksList endpoints

List webhook endpoints

GET/v1/webhooks

Every endpoint on the account, disabled ones included.

No CLI command yet — webhooks are managed over the API only.

curl -s https://api.propgate.dev/v1/webhooks \
  -H "authorization: Bearer pg_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
{
  "data": [
    {
      "createdAt": "2026-08-03T12:00:00.000Z",
      "disabled": false,
      "events": [
        "domain.failed",
        "domain.recovered"
      ],
      "id": "019fcf9a-3c4d-7e5f-a06b-7c8d9e0f1a2b",
      "object": "webhook",
      "url": "https://example.com/hooks/propgate"
    }
  ],
  "error": null,
  "meta": null
}

No item here carries a secret. A secret is returned once, when the endpoint is created or its secret is rotated, and never again — the same property API keys have, for the same reason.