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

# Webhooks

> Learn how to configure webhooks to automatically push post-call data to your preferred URL or API.

Webhooks allow you to automatically send data from your assistants to external servers or applications. Once configured, your webhook is triggered every time a call ends, pushing the extracted payload directly to your specified endpoint.

## Configuration Steps

<Steps>
  <Step title="Select Your Assistant">
    From the **left panel**, click on **Assistants** and select the specific assistant you want to configure.
  </Step>

  <Step title="Navigate to Tools">
    Under the assistant's settings, go to the **Tools** tab and select **Webhooks**.

    <Frame>
      <img src="https://mintcdn.com/superdash/fZH0AH3hoaNR9ekJ/images/catalyst-webhooks.png?fit=max&auto=format&n=fZH0AH3hoaNR9ekJ&q=85&s=0a8edfc3af3255379d795a0ac87e62fb" alt="Catalyst Webhooks" width="3536" height="1194" data-path="images/catalyst-webhooks.png" />
    </Frame>
  </Step>

  <Step title="Add a New Webhook">
    Click the **Add Webhook** button. A configuration window will appear.
  </Step>

  <Step title="Enter Webhook Details">
    Fill in the core destination details:

    * **Name:** A descriptive name for your webhook (this can be anything you choose to help you identify it).
    * **Webhook URL:** The API URL or endpoint where you want the data to be pushed.
  </Step>

  <Step title="Configure Authorization (Optional)">
    If your receiving webhook or API requires authentication, toggle **Authorization** on. This will reveal two additional fields:

    * **Header:** Enter the name of the expected header (e.g., `Authorization`, `x-api-key`).
    * **Key:** Enter your secure token or API key.
  </Step>

  <Step title="Save and Activate">
    Click **Add** to finalize. Your webhook is now active and ready to use.
  </Step>
</Steps>

***

## How It Works

<Note>
  **Post-Call Trigger:** For every call handled by this assistant, the webhook will automatically trigger immediately after the call ends. The extracted payload from the conversation will be pushed directly to your configured URL.
</Note>
