Skip to main content
GET
/
webhook_deliveries
List Deliveries
curl --request GET \
  --url https://api.moda.app/v1/webhook_deliveries \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "event_type": "<string>",
      "target_url": "<string>",
      "attempts": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "response_status_code": 123,
      "response_body_excerpt": "<string>",
      "last_attempted_at": "2023-11-07T05:31:56Z",
      "agent_job_id": "<string>",
      "api_key_id": "<string>",
      "replayed_from_id": "<string>"
    }
  ],
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.moda.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key from Settings > Developer > REST API

Headers

Moda-Version
enum<string>
default:2026-05-01

Calendar-dated API version pin. New integrations should pin 2026-05-01 to opt into the newest response shapes. For back-compat the server also accepts requests with no header and resolves them to the current default (today: 2026-04-12); that default advances on each sunset date. Any unsupported value returns 400 unsupported_version.

Available options:
2026-04-12,
2026-05-01
Example:

"2026-05-01"

Query Parameters

api_key_id
string | null
event_type
string | null
status
enum<string> | null
Available options:
pending,
succeeded,
failed
from
string<date-time> | null
to
string<date-time> | null
limit
integer
default:50
Required range: 1 <= x <= 200
cursor
string | null

Response

Successful Response

data
WebhookDeliveryResponse · object[]
required

Items in this page, in the endpoint's declared sort order.

next_cursor
string | null

Opaque cursor to pass as ?cursor= on the next request. null means you've reached the end of the collection.