Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.cometly.com/llms.txt

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

Returns recent webhook fires. Payloads are summarized to keys + types only — no PII bytes appear in this tool’s output. For a single webhook’s full (redacted) payload, use get_webhook_event.

When to use

  • “Did Stripe fire any webhooks today?”
  • “Why are we seeing errors from the HubSpot integration?”
  • Debugging an integration without exposing customer PII.

Parameters

ParameterTypeRequiredDescription
statusstringNoOne of pending_processing, processing, processed, error.
sourcestringNoIntegration provider slug (e.g. shopify, stripe).
limitintegerNo1–200, default 50.
formatstringNocsv (default), json, or yaml.

Output

id,status,source,received_at,error_summary,payload_summary
78421,processed,shopify,2026-05-15T14:08:00Z,,"id,customer,line_items,total_price"
78422,error,stripe,2026-05-15T14:09:00Z,Signature verification failed,
status reflects Cometly’s processing lifecycle (pending_processingprocessingprocessed | error). payload_summary is the comma-separated keys of the payload (top-level), capped at 10. error_summary is the first error message truncated to 200 chars.