Huddle01 Cloud
Webhooks

List webhooks

List all webhook subscriptions.

GET
/webhooks
X-API-Key<token>

GPU API key (format: mk_...). Generate from the dashboard or via POST /api-keys.

In: header

Response Body

application/json

application/json

curl -X GET "https://gpu.huddleapis.com/api/v1/webhooks"
{
  "code": "OK",
  "data": [
    {
      "id": "w1x2y3z4-...",
      "url": "https://your-server.com/webhook",
      "events": [
        "deployment.running",
        "deployment.error",
        "deployment.deleted"
      ],
      "is_active": true,
      "created_at": "2026-04-01T12:30:00Z",
      "updated_at": "2026-04-01T12:30:00Z"
    }
  ]
}
{
  "code": "BAD_REQUEST",
  "error": "Missing required field: hostname"
}