Skip to main content
const { data } = await luma.webhooks.list({ pagination_limit: 20 });
{
  "data": [
    {
      "api_id": "whk-abc123",
      "url": "https://myapp.com/api/luma-webhook"
    }
  ],
  "hasMore": false,
  "nextCursor": null
}
SDK luma.webhooks.list(params?: WebhookListParams): Promise<ListResponse<WebhookListEntry>> Returns a paginated list of registered webhook endpoints.
const { data } = await luma.webhooks.list({ pagination_limit: 20 });
{
  "data": [
    {
      "api_id": "whk-abc123",
      "url": "https://myapp.com/api/luma-webhook"
    }
  ],
  "hasMore": false,
  "nextCursor": null
}

Parameters

params
WebhookListParams
Optional pagination options. See the official Luma API docs for available fields.
See Client — List responses for the shared pagination shape.

Test it

const { data } = await luma.webhooks.list({ pagination_limit: 5 });
console.log(data.map((w) => w.url));