---
title: Webhooks API
description: "Use the AI Inbx webhooks API. Browse endpoints, request parameters, response schemas, and code examples for your integration."
sidebar:
  label: Overview
---

{/* Generated by scripts/openapi.ts from the shared API contract. */}

Configure event delivery and inspect delivery attempts.

## Endpoints

| Method | Operation | Path |
| --- | --- | --- |
| `GET` | [List webhook endpoints](/api/endpoints/webhooks/list-webhook-endpoints) | `/webhook-endpoints` |
| `POST` | [Create a webhook endpoint](/api/endpoints/webhooks/create-webhook-endpoint) | `/webhook-endpoints` |
| `GET` | [Retrieve a webhook endpoint](/api/endpoints/webhooks/retrieve-webhook-endpoint) | `/webhook-endpoints/{endpoint_id}` |
| `DELETE` | [Delete a webhook endpoint](/api/endpoints/webhooks/delete-webhook-endpoint) | `/webhook-endpoints/{endpoint_id}` |
| `PATCH` | [Update a webhook endpoint](/api/endpoints/webhooks/update-webhook-endpoint) | `/webhook-endpoints/{endpoint_id}` |
| `POST` | [Rotate a webhook signing secret](/api/endpoints/webhooks/rotate-webhook-secret) | `/webhook-endpoints/{endpoint_id}/rotate-secret` |
| `POST` | [Send a test webhook](/api/endpoints/webhooks/test-webhook-endpoint) | `/webhook-endpoints/{endpoint_id}/test` |
| `GET` | [List webhook deliveries](/api/endpoints/webhooks/list-webhook-deliveries) | `/webhook-endpoints/{endpoint_id}/deliveries` |
| `POST` | [Retry webhook deliveries](/api/endpoints/webhooks/retry-webhook-deliveries) | `/webhook-endpoints/{endpoint_id}/deliveries/retry` |

## Request essentials [#request-essentials]

Use `https://api.aiinbx.com/api/v2` as the base URL and send your API key in `Authorization: Bearer <key>`. Keep credentials on your server.

See [Authentication](/authentication) for scopes, [Conventions](/reference/conventions) for pagination and idempotency, and [Errors](/reference/errors) for recovery guidance. Each endpoint page includes its parameters, response schemas, and copyable curl, JavaScript, and Python examples.
