API Documentation

⌘K
GET/api/1/transcripts/search

Search Transcripts

Full-text search across earnings call transcripts with excerpt highlighting

Parameters

5
qstring
query

Search term

tickerstring
query

Filter by ticker

dateFromstring
query

Start date (YYYY-MM-DD)

dateTostring
query

End date (YYYY-MM-DD)

limitnumber
query

Max results (default 20)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/transcripts/search?q=Apple&ticker=AAPL&limit=20' \
  -H 'Accept: application/json'
200 Response
[
  {
  "callId": 0,
  "ticker": "string",
  "date": "string",
  "speaker": "string",
  "excerpt": "string",
  "rank": 0
}
]