The AI API analyzes captured webhook events and generates code and explanations to help you integrate faster.Documentation Index
Fetch the complete documentation index at: https://bobprince.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
AI features require the Starter plan or above. Requests from free accounts return a
403 with "upgrade_required": true.Explain payload
Returns a plain English explanation of what the webhook event means — what triggered it, what happened, and what the key fields represent.The endpoint ID.
The event ID.
A 2–3 sentence plain English description of the webhook event.
Generate TypeScript interface
Generates a TypeScript interface that matches the structure of the event payload. Use this as a starting point for typing webhook payloads in your codebase.The endpoint ID.
The event ID.
A TypeScript interface as a raw string (no markdown fences).
Generate handler code
Generates a complete, ready-to-use webhook handler for your preferred language and framework. The handler includes HMAC signature verification and error handling based on the captured event.The endpoint ID.
The event ID.
Target programming language. Supported values:
typescript, javascript, python, go.Target web framework. Supported values:
express, fastify, nextjs, fastapi, gin.The generated handler code as a raw string (no markdown fences).
Diagnose failure
Analyzes a failed event and its delivery attempts to explain what went wrong and how to fix it.The endpoint ID.
The event ID.
An actionable explanation of why delivery failed and how to resolve the issue.
