Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
earningsCallTranscripts()
package hello.world; import java.lang.Exception; import java.util.List; import org.benzinga.BZClient.Bzclient; import org.benzinga.BZClient.models.operations.GetEarningsCallTranscriptsResponse; public class Application { public static void main(String[] args) throws Exception { Bzclient sdk = Bzclient.builder() .apiKeyAuth("<YOUR_API_KEY_HERE>") .build(); GetEarningsCallTranscriptsResponse res = sdk.earningsCallTranscripts().get() .tickers(List.of( "<value>")) .callId(List.of( "<id>")) .page(700347L) .pagesize(558834L) .call(); if (res.modelsTranscriptSummaries().isPresent()) { // handle response } } }
tickers
callId
page
pagesize
package hello.world; import java.lang.Exception; import java.util.List; import org.benzinga.BZClient.Bzclient; import org.benzinga.BZClient.models.operations.GetEarningsCallTranscriptAudioFilesResponse; public class Application { public static void main(String[] args) throws Exception { Bzclient sdk = Bzclient.builder() .apiKeyAuth("<YOUR_API_KEY_HERE>") .build(); GetEarningsCallTranscriptAudioFilesResponse res = sdk.earningsCallTranscripts().getAudio() .tickers(List.of( "<value>")) .callId(List.of( "<id>")) .page(942138L) .pagesize(879999L) .call(); if (res.modelsTranscriptSummaryAudios().isPresent()) { // handle response } } }
Was this page helpful?
Contact support