MemoryKit

List Webhooks

List all webhook endpoints for the current project.

GET/v1/webhooks

Response

Returns 200 OK with a list of webhooks. The secret field is not included in list responses.

dataarray

List of webhook objects.

data[].idstring

Webhook ID.

data[].urlstring

The registered endpoint URL.

data[].eventsstring[]

Subscribed event types.

data[].is_activeboolean

Whether the webhook is active.

data[].failure_countnumber

Number of consecutive delivery failures.

data[].created_atstring

ISO 8601 timestamp.

Example response
{
  "data": [
    {
      "id": "wh_abc123",
      "url": "https://example.com/webhooks/memorykit",
      "events": ["*"],
      "is_active": true,
      "failure_count": 0,
      "created_at": "2025-01-15T10:30:00Z"
    }
  ]
}
const webhooks = await mk.webhooks.list();
Edit on GitHub

On this page