Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developers.paxoslabs.com/llms.txt

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

This page documents every webhook event type available in Paxos Labs. All events use a flat JSON structure with shared common fields and type-specific fields at the top level.

Event Types

Common Fields

Every webhook event includes these fields:
{
  "id": "1234567890",
  "type": "ping",
  "timestamp": "2026-04-10T18:32:24.000Z",
  "version": "2026-03-01"
}
FieldTypeDescription
idstringUnique event identifier (UUID). Remains the same across retry attempts, so consumers can idempotently handle duplicate events. Test events use the prefix evt_test_.
typestringThe event type string (e.g. ping).
timestampstringRFC 3339 UTC timestamp of the webhook delivery creation (e.g., 2026-04-10T18:32:24.000Z).
versionstringAPI version. Currently v2.

Handling Webhook Events

For guides on signature verification, idempotent processing, and more, see Common Implementation Patterns.