Skip to main content
GET
/
webhooks
/
deliveries
List webhook deliveries
curl --request GET \
  --url https://api.conduit.financial/v2/webhooks/deliveries \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "endpointId": "<string>",
      "eventType": "customer.created",
      "payload": {
        "id": "evt_2xKjF9mQb7vN4hL1pR3w8t",
        "type": "customer.created",
        "createdAt": "2026-01-15T09:30:00.000Z",
        "apiVersion": "2",
        "data": {}
      },
      "status": "succeeded",
      "attempts": 1,
      "maxAttempts": 5,
      "createdAt": "2026-01-15T09:30:00.000Z",
      "updatedAt": "2026-01-15T09:30:00.000Z",
      "completedAt": "2026-01-15T09:30:00.000Z"
    }
  ],
  "meta": {
    "mode": "cursor",
    "nextCursor": "eyJpZCI6ImN1c18yeFBxTjhSIn0",
    "previousCursor": null,
    "total": 42
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

cursor
string

Opaque cursor from a previous response to fetch the next page

Maximum string length: 500
limit
number
default:20

Maximum number of results to return (1-100)

Required range: 1 <= x <= 100
direction
enum<string>

Pagination direction relative to the cursor

Available options:
forward,
backward
endpointId
string

Only return deliveries targeted at this webhook endpoint

Pattern: ^wep_[0-9A-Za-z]{22}$
status
enum<string>

Filter by delivery status. Case-insensitive. An unknown value returns 400.

Available options:
pending,
processing,
succeeded,
failed
eventType
string

Filter by event type (exact match, e.g. transaction.failed). An unknown value returns an empty page.

Required string length: 1 - 100

Response

data
object[]
required
meta
object
required