API Documentation

⌘K
GET/api/1/transcripts/calls/{identifier}

List Earning Calls

Returns a list of earnings call transcripts for a given security

Parameters

3
limitnumber
query

Max results (default 20)

yearnumber
query

Filter by fiscal year

identifierstringrequired
path

Security identifier: ISIN, ticker, CUSIP, SEDOL, or WKN (e.g. US0378331005, AAPL, 037833100)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/transcripts/calls/US0378331005?limit=20&year=2025' \
  -H 'Accept: application/json'
200 Response
[
  {
  "id": 0,
  "ticker": "AAPL",
  "date": "2026-01-30T00:00:00.000Z",
  "quarter": 1,
  "year": 2026,
  "title": "string",
  "participants": []
}
]