---
title: "List Deliveries"
method: GET
path: "/webhook_deliveries"
tags: ["webhooks"]
---

# List Deliveries

`GET /webhook_deliveries`

List webhook deliveries for the caller's team, newest first.

Role-scoped: admin / owner sees every delivery in the team; member
sees only deliveries triggered by keys they created (rows whose
``api_key_id`` was set to NULL after the key was deleted stay
admin-only).

## Query parameters

- `api_key_id` string, nullable
- `event_type` string, nullable
- `status` 'pending' | 'succeeded' | 'failed', nullable
- `from` string, date-time, nullable
- `to` string, date-time, nullable
- `limit` integer
- `cursor` string, nullable

## Headers

- `Moda-Version` '2026-04-12' | '2026-05-01'

## Response `200`

Successful Response

- CursorPageWebhookDeliveryResponse
  - `data` WebhookDeliveryResponse[], required — Items in this page, in the endpoint's declared sort order.
    - `id` string, required — Prefixed ``whd_...`` wire form.
    - `event_type` string, required
    - `target_url` string, required
    - `status` 'pending' | 'succeeded' | 'failed', required
    - `attempts` integer, required
    - `response_status_code` integer, nullable
    - `response_body_excerpt` string, nullable
    - `last_attempted_at` string, date-time, nullable
    - `created_at` string, date-time, required
    - `agent_job_id` string, nullable
    - `api_key_id` string, nullable
    - `replayed_from_id` string, nullable
  - `next_cursor` string, nullable — Opaque cursor to pass as ``?cursor=`` on the next request. ``null`` means you've reached the end of the collection.

## Other responses

- `401` — Authentication required.
- `403` — Permission denied for this scope.
- `404` — Resource not found.
- `409` — Conflict (idempotency / resource state).
- `422` — Request validation failed.
- `429` — Rate limit exceeded.
- `500` — Internal error.

---

[API](https://skmtc.dev/moda/apis/moda-public-api.md) · [All operations](https://skmtc.dev/moda/apis/moda-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/moda/moda-public-api/revisions/b34cb4cca59e/schema)
