# Earnings calls (/docs/proof-points/earnings-calls)



Earnings-call proof points are transcripts and related documents. Date filters apply to **published date**.

**Endpoints:**

* `POST /proof-points/earnings-calls/search` — [playground](/docs/api-reference/endpoints/search_earnings_calls_proof_points_earnings_calls_search_post)
* `POST /proof-points/earnings-calls/time-series` — [playground](/docs/api-reference/endpoints/earnings_calls_time_series_proof_points_earnings_calls_time_series_post)
* `POST /proof-points/earnings-calls/correlation-matrix` — [playground](/docs/api-reference/endpoints/earnings_calls_correlation_matrix_proof_points_earnings_calls_correlation_matrix_post)

## Typical Questions [#typical-questions]

* Which topics are showing rising earnings-call discussion?
* What are representative transcripts for selected organizations?
* How does earnings-call volume evolve month over month?

## Request Patterns [#request-patterns]

Uses the [shared proof-point fields](/docs/proof-points) only — no extra type-specific filters.

### Search [#search]

```json
{
  "topicIds": ["11111111-1111-1111-1111-111111111111"],
  "organizationIds": ["aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa"],
  "start": "2023-01-01T00:00:00Z",
  "end": "2024-12-31T23:59:59Z",
  "take": 25,
  "sortColumn": "published_at",
  "sortDirection": "desc"
}
```

### Time series [#time-series]

```json
{
  "topicIds": ["11111111-1111-1111-1111-111111111111"],
  "resolution": "quarter",
  "start": "2022-01-01T00:00:00Z",
  "end": "2024-12-31T23:59:59Z"
}
```

## Response Notes [#response-notes]

Results use the shared enriched-document shape (`title`, `summary`, `publishedAt`, `url`, `topics`, `orgNodes`). Time series returns `labels` and `counts`.
