Summaries

Get summary by type

Fetch a specific summary type for an event ID


GET /summaries/{event_id}/{summary_type}

Request

https://premium.aiera.com/api/summaries/2543077/zeroshot
ParameterTypeDataTypeDescription
event_idpathintegerThe event ID for the desired summary
summary_typepathstringThe type of summary to be returned (zeroshot, constrained, bullets, criticals)

Response

[
  {
    "event": {
      "event_id": 2543077,
      "equity_id": 2263,
      "local_ticker": "GBX",
      "bloomberg_ticker": "GBX:US",
      "ric": "GBX.N",
      "isin": "US3936571013",
      "permid": "5037941027",
      "exchange_mic": "XNYS",
      "title": "Q1 2024  The Greenbrier Companies Inc Earnings Call",
      "event_type": "earnings",
      "event_date": "2024-01-05T11:00:00",
      "has_unknown_time": false,
      "connection_expected": true,
      "conference_number": "+1-888-317-6003",
      "conference_pin": "9223601",
      "broadcast_url": "https://app.webinar.net/6RvWQ0XQ23V",
      "replay_url": null,
      "slides_url": "https://a.aiera.com/api/events/2543077/assets/press_url",
      "slides_url_type": "confirmed",
      "press_url": "https://a.aiera.com/api/events/2543077/assets/press_url",
      "press_url_type": "estimated",
      "fiscal_quarter": 1,
      "fiscal_year": 2024,
      "public_url": "https://dashboard.aiera.com/p/evtmin/b2cea9d047e1e9ebe64ddc5c59a10823",
      "public_share_url": "https://dashboard.aiera.com/p/GBX/event/01/05/2024/b2cea9d047e1e9ebe64ddc5c59a10823",
      "transcription_status": "active",
      "transcription_audio_url": "+1-888-317-6003",
      "transcription_audio_offset_seconds": 1318,
      "has_transcripts": true,
      "has_pricing": true,
      "status": "active",
      "created": "2023-12-20T20:37:04",
      "modified": "2024-01-06T03:20:02"
    },
    "summary": {
      "title": "Greenbrier's Multiyear Strategy Drives Early Progress: Q1 Results and Outlook for Fiscal 2024",
      "summary": [
        "Andrea, please be mindful that Greenbrier's multiyear Better Together strategy continues to drive early progress with fundamental priorities focused on maintaining manufacturing leadership, meeting customer needs, and pursuing disciplined growth in leasing and services. Our Q1 performance demonstrates an increase of 250 basis points in aggregate gross margins, which aligns with our target to achieve mid-teen margins by fiscal 2026. This growth was led by CEO and President Lori Tekorius, Executive Vice President and Chief Commercial and Leasing Officer Brian Comstock, and Senior Vice President and CFO Adrian Downes, who will further elaborate on our financial performance and outlook for fiscal 2024.\n\nIn summary, our Q1 results reflect broad-based new railcar orders of 5,100 units valued at nearly $710 million, with international orders accounting for 30% of activity. Our Leasing platform is fully operational in Europe and is expected to contribute significantly to our profitability in the long-term. We are confident in our multiyear plan as it focuses on what we can control and does not rely on an optimistic demand scenario.\n\nWe have also affirmed our fiscal 2024 guidance for deliveries of 22,500 to 25,000 units, revenues between $3.4 billion and $3.7 billion, and selling and administrative expense of $220 million to $230 million. Additionally, we have updated our gross margin guidance to increase to the low to mid-teens.\n\nThank you, and now we will open the call for questions."
      ],
      "model": "zeroshot",
      "type": "presentation",
      "version": "published",
      "audio_clip": null,
      "video_clip": null,
      "priority": 2,
      "created": "2024-01-05T12:25:14",
      "modified": "2024-01-28T19:19:38"
    }
  }
]

Code Samples

Bash

curl --request GET \
  --url 'https://premium.aiera.com/api/summaries/{event_id}/{summary_type}' \
  --header 'X-API-Key: xxx'

Python

import requests
requests.request("GET", "https://premium.aiera.com/api/summaries/{event_id}/{summary_type}", headers={"X-API-Key": "xxx"})
Previous
Get Summary