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

# Call webhooks

> Receive the transcript, summary, and extracted intake data when a call ends.

When a call ends and post-call analysis finishes, Lawtte posts a `call_analyzed`
event to your firm's webhook endpoint.

## Payload

```json theme={null}
{
  "event": "call_analyzed",
  "call": {
    "call_id": "call_abc123",
    "from_number": "+12125550100",
    "duration_ms": 184000,
    "transcript": "Agent: Thank you for calling…",
    "call_analysis": {
      "call_summary": "Caller was rear-ended on the 405 last Tuesday…",
      "custom_analysis_data": {
        "caller_name": "Jane Doe",
        "case_type": "auto accident",
        "injured": "yes"
      }
    }
  }
}
```

Respond `200` with `{ "received": true }` as soon as you have the payload, then do
your own work asynchronously. Slow responses cause retries.

## What Lawtte does with it

<AccordionGroup>
  <Accordion title="Creates or updates a lead" icon="user-plus">
    Caller name, number, and case type are extracted from the analysis, deduplicated
    against existing leads, and written to your dashboard.
  </Accordion>

  <Accordion title="Syncs to your case management system" icon="rotate">
    Clio, MyCase, Filevine, and Lawmatics are supported, plus a generic sync
    endpoint per system.
  </Accordion>

  <Accordion title="Notifies your team" icon="bell">
    Email and Slack notifications go out with the summary and a link to the lead.
  </Accordion>
</AccordionGroup>

## Verifying requests

Webhook requests are signed. Reject any request whose signature does not verify
against your firm's webhook secret, and treat the body as untrusted until it does.

## Booking events

Cal.com booking events (`BOOKING_CREATED`, `BOOKING_RESCHEDULED`,
`BOOKING_CANCELLED`) arrive on a separate receiver and drive appointment reminders.
See [appointments](/guides/appointments).


## Related topics

- [Quickstart](/quickstart.md)
- [Troubleshooting](/mcp/troubleshooting.md)
- [Universal webhook handler for all firms](/api-reference/webhooks/universal-webhook-handler-for-all-firms.md)
- [Webhook receiver for Cal.com booking events](/api-reference/appointments/webhook-receiver-for-calcom-booking-events.md)
- [API overview](/api-reference/introduction.md)
