Special Events

Special Events

Two events that have specific endpoints are annual reports and conferences.

Annual Reports

You can retrieve annual reports from the annual reports endpoint. By default, the endpoint will return the latest annual report. If you want to get an earlier annual report, you can specify the year in the request body:

curl -X 'GET' \
  'https://api.quartr.com/public/v1/companies/3706/annual-reports?year=2021' \
  -H 'accept: application/json' \
  -H 'x-api-key: your_api_key'
Conferences

You can retrieve all conferences from the conferences endpoint. You can specify company IDs, tickers, or ISIN codes to get conferences for specific companies. 99% of all the conferences are sell-side conferences:

curl -X 'GET' \
  'https://api.quartr.com/public/v1/events/conferences?companyId=3706' \
  -H 'accept: application/json' \