Live Earnings
Check back soon. We'll announce the next live call here.
Check back soon. We'll announce the next live call here.
Every word attributed to the speaker who said it. Streamed within seconds of being spoken. This is the foundation for every product that operates while the call is live — alerts, signal generation, position sizing, post-call analysis. Build what your competitors can't.
Diarization tells you a speaker changed.
Live Earnings tells you who it was.
Live diarization is not enough. Live Earnings resolves the speaker.
Surface guidance, surprises, analyst pressure points in the seat — sub-5-second from spoken word to your terminal.
Replace transcription vendors that ship hours later. Live attributed copy, ready to highlight, quote, embed.
Feed attributed turns into your own models for sentiment, deviation-from-guidance, Q&A pattern detection.
pip install live-earningsfrom live_earnings import LiveEarningsClient
client = LiveEarningsClient(token=...)
for env in client.stream("nvda-q1-fy27"):
print(env.event.name, env.event.text)npm i live-earnings-sdkimport { LiveEarningsClient } from "live-earnings-sdk";
const client = new LiveEarningsClient({ token });
for await (const env of client.stream("nvda-q1-fy27")) {
console.log(env.event.name, env.event.text);
}