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

# search_lead_insights

> Read an existing call summary, or list lead-analysis tasks.

<Info>**READ** · 2 operations · never changes data</Info>

Read an existing call summary, or list lead-analysis tasks. Reading a cached AI result is a read; producing a new one is [`generate_lead_insight`](/mcp/tools/generate-lead-insight).

Each `kind` needs its own id, not a shared `lead_id`:

```js theme={null}
// kind=call_summary: call_record_id is required. lead_id is accepted but not used by the
// real endpoint, which is keyed by call_record_id.
search_lead_insights({ kind: "call_summary", call_record_id })

// kind=analysis_tasks: no id required; optionally page through results.
search_lead_insights({ kind: "analysis_tasks", filters: { pageNum, pageSize } })
```
