Retrieve a structured feed of company documents, earnings reports, news, press releases, and other financial content. The endpoint returns organized updates with citations and key highlights.
{ "items": [ { "ticker": "DUOL", "company_name": "Duolingo", "title": "Duolingo Reports Strong Q3 2025 and Prioritizes Long-Term User Growth", "date": "2025-11-05T14:30:00Z", "doc_type": "EARNINGS_CALL", "categories": ["Earnings", "New Projects/Investments", "Guidance Update"], "stock_change": { "percentage": -0.79, "direction": "down" }, "sentiment": "positive", "highlights": [ { "text": "Duolingo achieved strong Q3 2025 results, reporting 36% year-over-year daily active user (DAU) growth and guiding to nearly $1.2 billion in bookings for the year, a 33% increase, with an adjusted EBITDA margin of 29%.", "citations": [ { "source": "Earnings Transcript", "chunk_id": "duol_q3_2025_earnings_001" } ] }, { "text": "The company is implementing a durable strategic shift to prioritize long-term user growth and teaching efficacy over short-term monetization, driven by the significant opportunity in AI-powered education.", "citations": [ { "source": "Earnings Transcript", "chunk_id": "duol_q3_2025_earnings_045" }, { "source": "Earnings Transcript", "chunk_id": "duol_q3_2025_earnings_067" } ] }, { "text": "This reprioritization is expected to lead to some deceleration in bookings and revenue growth in Q4 and potentially into 2026, as resources are reallocated towards product innovation and user acquisition.", "citations": [ { "source": "Earnings Transcript", "chunk_id": "duol_q3_2025_earnings_089" } ] }, { "text": "Product developments include expanding content for the top nine languages to a professional proficiency level, introducing guided video calls, and enhancing math and music courses.", "citations": [ { "source": "Earnings Transcript", "chunk_id": "duol_q3_2025_product_012" } ] }, { "text": "The chess course is the fastest-growing, with player-versus-player (PVP) functionality rolling out.", "citations": [ { "source": "Earnings Transcript", "chunk_id": "duol_q3_2025_product_034" } ] }, { "text": "Max subscribers now constitute 9% of total subscribers, with bookings doubling year-over-year in Q3, and Max renewals are performing slightly better than Super subscribers.", "citations": [ { "source": "Earnings Transcript", "chunk_id": "duol_q3_2025_metrics_056" } ] } ] } ], "total_items": 1, "date_range": { "start": "2025-10-01", "end": "2025-11-14" }}
# First requestresponse1 = requests.post(url, json={ "tickers": ["AAPL"], "limit": 50})# Get the oldest date from first batcholdest_date = response1.json()["items"][-1]["date"]# Second request - get older itemsresponse2 = requests.post(url, json={ "tickers": ["AAPL"], "end_date": oldest_date, "limit": 50})