GET /webhooks/deliveries
List webhook deliveries, newest first.
TypeScript SDKThe npm client, generated from the API spec.Python SDKThe PyPI client, sync and async.
| Method | Path |
|---|---|
| GET | /v1/webhooks/deliveries |
Includes verification pings and deliveries for deleted webhooks. History is retained for 30 days. Retries belong to the same delivery.
Query parameters
webhook_idstring
event_typeenum
one of
session.createwebhook.pingstatusenum
one of
pendingdeliveringretryingsucceededfailedcancelledstartstring · date-time
endstring · date-time
limitdefault
50integercursorstring
curl "https://api.ellipsis.dev/v1/webhooks/deliveries" \
-H "Authorization: Bearer $ELLIPSIS_API_KEY"import os
from ellipsis import Ellipsis
client = Ellipsis(api_key=os.environ["ELLIPSIS_API_TOKEN"])
for item in client.webhooks.deliveries.list():
print(item)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
for await (const item of client.webhooks.deliveries.list()) {
console.log(item);
}Request
Response
Example response · 200
{
"has_more": false,
"next_cursor": "string"
}