> ## Documentation Index
> Fetch the complete documentation index at: https://bobprince.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# AI Overview

> AI-powered payload inspection, code generation, and failure diagnosis

Hookdrop includes AI features to help you understand, use, and debug webhooks faster — without leaving the dashboard or reading raw JSON.

<Note>AI features require Starter plan or above. [Upgrade your plan](/billing/plans) to get access.</Note>

<CardGroup cols={2}>
  <Card title="Explain Payload" icon="comment" href="/ai/explain">
    Get a plain English summary of any captured event
  </Card>

  <Card title="Code Generation" icon="code" href="/ai/code-generation">
    Generate TypeScript interfaces and ready-to-use handler code
  </Card>

  <Card title="Diagnose Failures" icon="triangle-exclamation" href="/ai/diagnose">
    Find out why a delivery failed and how to fix it
  </Card>
</CardGroup>

## What you can do

| Feature                           | What it does                                                                  |
| --------------------------------- | ----------------------------------------------------------------------------- |
| **Explain payload**               | Summarizes a webhook event in plain English                                   |
| **Generate TypeScript interface** | Creates a typed interface from the event payload shape                        |
| **Generate handler code**         | Produces a ready-to-use webhook handler in your chosen language and framework |
| **Diagnose failure**              | Analyzes a failed delivery and suggests a fix                                 |

## Supported languages and frameworks

Code generation supports the following languages:

* `typescript`
* `javascript`
* `python`
* `go`

And the following frameworks:

* `express`
* `fastify`
* `nextjs`
* `fastapi`
* `gin`
