Webhooks

List webhooks

List all webhook endpoints on your account. The signing secret is never returned after creation.

GET https://u2l.ai/api/v1/webhooks

Authorizations

Authorizationstringrequired

Bearer authentication header of the form Bearer <token>, where <token> is your U2L API key (u2l_live_...). Create one in the dashboard under Settings > API.

Response 200

webhooksobject[]
webhooks[].idstring
webhooks[].urlstring
webhooks[].eventsstring[]
webhooks[].activeboolean
webhooks[].failureCountinteger

Consecutive failed deliveries. The endpoint is disabled automatically at 20. Resets to 0 on any successful delivery.

webhooks[].lastDeliveryAtstring
webhooks[].createdAtstring

Errors

401 Error

See Rate Limits & Errors for the error envelope and per-plan limits.

curl https://u2l.ai/api/v1/webhooks \
  -H "Authorization: Bearer u2l_live_your_api_key"
const response = await fetch("https://u2l.ai/api/v1/webhooks", {
  headers: {
    "Authorization": "Bearer u2l_live_your_api_key",
  },
});

const data = await response.json();
console.log(data);
import requests

response = requests.get(
    "https://u2l.ai/api/v1/webhooks",
    headers={"Authorization": "Bearer u2l_live_your_api_key"},
)

print(response.json())
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	req, _ := http.NewRequest("GET", "https://u2l.ai/api/v1/webhooks", nil)
	req.Header.Set("Authorization", "Bearer u2l_live_your_api_key")
	res, _ := http.DefaultClient.Do(req)
	defer res.Body.Close()

	data, _ := io.ReadAll(res.Body)
	fmt.Println(string(data))
}
{
  "webhooks": [
    {
      "id": "we_f9ae3c2a1ee24e1b9321e359c9830b96",
      "url": "https://example.com/u2l-webhook",
      "events": [
        "link.created",
        "link.updated",
        "link.deleted"
      ],
      "active": true,
      "failureCount": 0,
      "lastDeliveryAt": "2026-07-25 09:12:44",
      "createdAt": "2026-07-25 08:52:02"
    }
  ]
}