Quartr

Quartr is an investor relations data platform that provides structured, AI-ready access to live and historical earnings data from more than 15,000 public companies across 65+ markets. It covers earnings calls, transcripts, filings, reports, slide presentations, and AI-generated event summaries.

With the Quartr integration in Sim, you can:

  • Look up companies: Find any covered public company by ticker, ISIN, CIK, OpenFIGI, country, or exchange, and resolve it to a Quartr company ID.
  • Track corporate events: List earnings calls and other corporate events by company, event type, and date range, or retrieve a single event with its fiscal period details.
  • Summarize earnings calls: Fetch AI-generated event summaries in one-line, short, or long form — with source references back to the underlying documents.
  • Download filings and reports: List 10-Ks, 10-Qs, earnings releases, and other filings, and download report PDFs directly into your workflow as files.
  • Work with slide decks and transcripts: Retrieve investor presentation PDFs and structured transcript JSON files (with timestamps and speaker identification) for downstream analysis.
  • Access event audio: Get download and streaming URLs for archived earnings call audio, including where the Q&A section starts.
  • Monitor live events: List live and upcoming events with their live audio and transcript stream URLs to react the moment a company goes live.

Downloaded reports, slide decks, and transcripts are stored as execution files, so they can be passed straight into agents, knowledge bases, or other blocks in your workflow.

To use the integration, generate an API key from the Quartr API portal and paste it into the block. Your key inherits the datasets enabled on your Quartr subscription.

Usage Instructions

Integrate Quartr into the workflow. Look up public companies, corporate events, and event types; fetch AI-generated event summaries; list and download filings, reports, slide decks, and transcripts; and access archived audio and live event streams. Requires API Key.

Actions

quartr_list_companies

List companies covered by Quartr, filterable by ticker, ISIN, CIK, OpenFIGI, country, and exchange.

Input

ParameterTypeRequiredDescription
apiKeystringYesQuartr API key
tickersstringNoComma-separated list of company tickers (e.g., "AAPL,MSFT")
isinsstringNoComma-separated list of ISINs (e.g., "US0378331005")
ciksstringNoComma-separated list of SEC CIKs (e.g., "0000320193")
countriesstringNoComma-separated list of ISO 3166-1 alpha-2 country codes (e.g., "US,SE")
exchangesstringNoComma-separated list of exchange symbols, without whitespace (e.g., "NasdaqGS")
companyIdsstringNoComma-separated list of Quartr company IDs (e.g., "4742,128")
openfigisstringNoComma-separated list of OpenFIGI codes (figi, compositeFigi, or shareClassFigi)
updatedAfterstringNoOnly return data updated after this ISO 8601 date (e.g., "2024-01-01")
updatedBeforestringNoOnly return data updated before this ISO 8601 date (e.g., "2024-12-31")
limitnumberNoMaximum number of items to return in a single request (default: 10, max: 500)
cursornumberNoPagination cursor from the previous response (nextCursor) for the next page
directionstringNoSort direction by id: "asc" or "desc" (default: asc)

Output

ParameterTypeDescription
companiesarrayCompanies matching the filters
idnumberQuartr company ID
namestringLegal company name
displayNamestringDisplay name
countrystringISO 3166-1 alpha-2 country code
tickersarrayTicker listings for the company
tickerstringTicker symbol
exchangestringExchange symbol
isinsarrayISINs for the company
cikstringSEC Central Index Key
openfigiarrayOpenFIGI share class identifiers
backlinkUrlstringQuartr backlink URL for the company
createdAtstringCreation timestamp (ISO 8601)
updatedAtstringLast update timestamp (ISO 8601)
nextCursornumberCursor for fetching the next page of results (null when no more pages)

quartr_get_company

Retrieve a single company from Quartr by its company ID.

Input

ParameterTypeRequiredDescription
apiKeystringYesQuartr API key
companyIdnumberYesQuartr company ID (e.g., 4742)

Output

ParameterTypeDescription
companyobjectThe requested company
idnumberQuartr company ID
namestringLegal company name
displayNamestringDisplay name
countrystringISO 3166-1 alpha-2 country code
tickersarrayTicker listings for the company
tickerstringTicker symbol
exchangestringExchange symbol
isinsarrayISINs for the company
cikstringSEC Central Index Key
openfigiarrayOpenFIGI share class identifiers
backlinkUrlstringQuartr backlink URL for the company
createdAtstringCreation timestamp (ISO 8601)
updatedAtstringLast update timestamp (ISO 8601)

quartr_list_events

List corporate events (earnings calls, capital markets days, etc.) from Quartr, filterable by company, event type, and date range.

Input

ParameterTypeRequiredDescription
apiKeystringYesQuartr API key
companyIdsstringNoComma-separated list of Quartr company IDs (e.g., "4742,128")
tickersstringNoComma-separated list of company tickers (e.g., "AAPL,MSFT")
isinsstringNoComma-separated list of ISINs (e.g., "US0378331005")
ciksstringNoComma-separated list of SEC CIKs (e.g., "0000320193")
countriesstringNoComma-separated list of ISO 3166-1 alpha-2 country codes (e.g., "US,SE")
exchangesstringNoComma-separated list of exchange symbols, without whitespace (e.g., "NasdaqGS")
eventTypeIdsstringNoComma-separated list of event type IDs (e.g., "26,27")
startDatestringNoOnly return events on or after this ISO 8601 date (e.g., "2024-01-01")
endDatestringNoOnly return events on or before this ISO 8601 date (e.g., "2024-12-31")
sortBystringNoField to sort by: "id" or "date" (default: id)
updatedAfterstringNoOnly return data updated after this ISO 8601 date (e.g., "2024-01-01")
updatedBeforestringNoOnly return data updated before this ISO 8601 date (e.g., "2024-12-31")
limitnumberNoMaximum number of items to return in a single request (default: 10, max: 500)
cursornumberNoPagination cursor from the previous response (nextCursor) for the next page
directionstringNoSort direction applied to the sortBy field: "asc" or "desc" (default: asc)

Output

ParameterTypeDescription
eventsarrayEvents matching the filters
idnumberQuartr event ID
companyIdnumberQuartr company ID
titlestringEvent title (e.g., "Q1 2024")
datestringEvent date (ISO 8601)
typeIdnumberEvent type ID
fiscalYearnumberFiscal year
fiscalPeriodstringFiscal period (e.g., "Q1")
languagestringEvent language code
backlinkUrlstringQuartr backlink URL for the event
createdAtstringCreation timestamp (ISO 8601)
updatedAtstringLast update timestamp (ISO 8601)
nextCursornumberCursor for fetching the next page of results (null when no more pages)

quartr_get_event

Retrieve a single corporate event from Quartr by its event ID.

Input

ParameterTypeRequiredDescription
apiKeystringYesQuartr API key
eventIdnumberYesQuartr event ID (e.g., 128301)

Output

ParameterTypeDescription
eventobjectThe requested event
idnumberQuartr event ID
companyIdnumberQuartr company ID
titlestringEvent title (e.g., "Q1 2024")
datestringEvent date (ISO 8601)
typeIdnumberEvent type ID
fiscalYearnumberFiscal year
fiscalPeriodstringFiscal period (e.g., "Q1")
languagestringEvent language code
backlinkUrlstringQuartr backlink URL for the event
createdAtstringCreation timestamp (ISO 8601)
updatedAtstringLast update timestamp (ISO 8601)

quartr_get_event_summary

Retrieve the AI-generated summary of a corporate event from Quartr, with selectable length and optional plain-text formatting.

Input

ParameterTypeRequiredDescription
apiKeystringYesQuartr API key
eventIdnumberYesQuartr event ID (e.g., 128301)
summaryLengthstringNoLength preset for the summary: "line", "short", or "long" (default: short)
plainSummarybooleanNoReturn a plain-text summary without embedded document source tags

Output

ParameterTypeDescription
summarystringAI-generated event summary in Markdown (includes embedded document source tags unless a plain-text summary is requested)
sourcesarraySource documents referenced by the summary
sourceIdstringID linking the source document to tags embedded in the summary
documentIdnumberQuartr document ID of the source
pagenumberPage number or timestamp in seconds depending on the document type
timestampnumberTimestamp in seconds
typeIdnumberDocument type ID of the source
summaryIdnumberQuartr summary ID
summaryCreatedAtstringSummary creation timestamp (ISO 8601)
summaryUpdatedAtstringSummary last update timestamp (ISO 8601)

quartr_list_event_types

List the event types available in Quartr (e.g., earnings calls), useful for filtering events by type ID.

Input

ParameterTypeRequiredDescription
apiKeystringYesQuartr API key
limitnumberNoMaximum number of items to return in a single request (default: 10, max: 500)
cursornumberNoPagination cursor from the previous response (nextCursor) for the next page
directionstringNoSort direction by id: "asc" or "desc" (default: asc)

Output

ParameterTypeDescription
eventTypesarrayAvailable event types
idnumberEvent type ID
namestringEvent type name (e.g., "Q1")
parentstringParent event type name (e.g., "Earnings call")
createdAtstringCreation timestamp (ISO 8601)
updatedAtstringLast update timestamp (ISO 8601)
nextCursornumberCursor for fetching the next page of results (null when no more pages)

quartr_list_documents

List documents of all kinds (reports, slide decks, and transcripts) from Quartr, filterable by company, event, document type, document group, and date range.

Input

ParameterTypeRequiredDescription
apiKeystringYesQuartr API key
companyIdsstringNoComma-separated list of Quartr company IDs (e.g., "4742,128")
eventIdsstringNoComma-separated list of Quartr event IDs (e.g., "128301")
tickersstringNoComma-separated list of company tickers (e.g., "AAPL,MSFT")
isinsstringNoComma-separated list of ISINs (e.g., "US0378331005")
ciksstringNoComma-separated list of SEC CIKs (e.g., "0000320193")
countriesstringNoComma-separated list of ISO 3166-1 alpha-2 country codes (e.g., "US,SE")
exchangesstringNoComma-separated list of exchange symbols, without whitespace (e.g., "NasdaqGS")
documentTypeIdsstringNoComma-separated list of document type IDs (e.g., "7,10")
documentGroupIdsstringNoComma-separated list of document group IDs: 1 = Earnings Release, 2 = Press Release, 3 = Interim Report, 4 = Annual Report, 5 = Proxy Statement, 6 = Registration Statement
startDatestringNoOnly return documents dated on or after this ISO 8601 date (e.g., "2024-01-01")
endDatestringNoOnly return documents dated on or before this ISO 8601 date (e.g., "2024-12-31")
expandEventbooleanNoInclude expanded event details on each document
updatedAfterstringNoOnly return data updated after this ISO 8601 date (e.g., "2024-01-01")
updatedBeforestringNoOnly return data updated before this ISO 8601 date (e.g., "2024-12-31")
limitnumberNoMaximum number of items to return in a single request (default: 10, max: 500)
cursornumberNoPagination cursor from the previous response (nextCursor) for the next page
directionstringNoSort direction by id: "asc" or "desc" (default: asc)

Output

ParameterTypeDescription
documentsarrayDocuments matching the filters
idnumberQuartr document ID
companyIdnumberQuartr company ID
eventIdnumberQuartr event ID
typeIdnumberDocument type ID
fileUrlstringURL of the document file
createdAtstringCreation timestamp (ISO 8601)
updatedAtstringLast update timestamp (ISO 8601)
eventobjectExpanded event details (present when event expansion is requested)
titlestringEvent title
typeIdnumberEvent type ID
fiscalYearnumberFiscal year
fiscalPeriodstringFiscal period (e.g., "Q1")
languagestringEvent language code
datestringEvent date (ISO 8601)
nextCursornumberCursor for fetching the next page of results (null when no more pages)

quartr_list_document_types

List the document types available in Quartr (e.g., 10-Q quarterly reports), useful for filtering documents by type ID.

Input

ParameterTypeRequiredDescription
apiKeystringYesQuartr API key
limitnumberNoMaximum number of items to return in a single request (default: 10, max: 500)
cursornumberNoPagination cursor from the previous response (nextCursor) for the next page
directionstringNoSort direction by id: "asc" or "desc" (default: asc)

Output

ParameterTypeDescription
documentTypesarrayAvailable document types
idnumberDocument type ID
namestringDocument type name (e.g., "Quarterly Report")
descriptionstringDocument type description
formstringFiling form (e.g., "10-Q")
categorystringDocument category (e.g., "Report")
documentGroupIdnumberDocument group ID
createdAtstringCreation timestamp (ISO 8601)
updatedAtstringLast update timestamp (ISO 8601)
nextCursornumberCursor for fetching the next page of results (null when no more pages)

quartr_list_reports

List filings and reports (10-K, 10-Q, earnings releases, etc.) from Quartr, filterable by company, event, document type, document group, and date range.

Input

ParameterTypeRequiredDescription
apiKeystringYesQuartr API key
companyIdsstringNoComma-separated list of Quartr company IDs (e.g., "4742,128")
eventIdsstringNoComma-separated list of Quartr event IDs (e.g., "128301")
tickersstringNoComma-separated list of company tickers (e.g., "AAPL,MSFT")
isinsstringNoComma-separated list of ISINs (e.g., "US0378331005")
ciksstringNoComma-separated list of SEC CIKs (e.g., "0000320193")
countriesstringNoComma-separated list of ISO 3166-1 alpha-2 country codes (e.g., "US,SE")
exchangesstringNoComma-separated list of exchange symbols, without whitespace (e.g., "NasdaqGS")
documentTypeIdsstringNoComma-separated list of document type IDs (e.g., "7,10")
documentGroupIdsstringNoComma-separated list of document group IDs: 1 = Earnings Release, 2 = Press Release, 3 = Interim Report, 4 = Annual Report, 5 = Proxy Statement, 6 = Registration Statement
startDatestringNoOnly return documents dated on or after this ISO 8601 date (e.g., "2024-01-01")
endDatestringNoOnly return documents dated on or before this ISO 8601 date (e.g., "2024-12-31")
expandEventbooleanNoInclude expanded event details on each document
updatedAfterstringNoOnly return data updated after this ISO 8601 date (e.g., "2024-01-01")
updatedBeforestringNoOnly return data updated before this ISO 8601 date (e.g., "2024-12-31")
limitnumberNoMaximum number of items to return in a single request (default: 10, max: 500)
cursornumberNoPagination cursor from the previous response (nextCursor) for the next page
directionstringNoSort direction by id: "asc" or "desc" (default: asc)

Output

ParameterTypeDescription
reportsarrayReports matching the filters
idnumberQuartr document ID
companyIdnumberQuartr company ID
eventIdnumberQuartr event ID
typeIdnumberDocument type ID
fileUrlstringURL of the document file
createdAtstringCreation timestamp (ISO 8601)
updatedAtstringLast update timestamp (ISO 8601)
eventobjectExpanded event details (present when event expansion is requested)
titlestringEvent title
typeIdnumberEvent type ID
fiscalYearnumberFiscal year
fiscalPeriodstringFiscal period (e.g., "Q1")
languagestringEvent language code
datestringEvent date (ISO 8601)
nextCursornumberCursor for fetching the next page of results (null when no more pages)

quartr_get_report

Retrieve a filing or report (10-K, 10-Q, earnings release, etc.) from Quartr by its document ID and download the PDF file.

Input

ParameterTypeRequiredDescription
apiKeystringYesQuartr API key
reportIdnumberYesQuartr document ID of the report (e.g., 432907)

Output

ParameterTypeDescription
documentobjectReport metadata
idnumberQuartr document ID
companyIdnumberQuartr company ID
eventIdnumberQuartr event ID
typeIdnumberDocument type ID
fileUrlstringURL of the document file
createdAtstringCreation timestamp (ISO 8601)
updatedAtstringLast update timestamp (ISO 8601)
eventobjectExpanded event details (present when event expansion is requested)
titlestringEvent title
typeIdnumberEvent type ID
fiscalYearnumberFiscal year
fiscalPeriodstringFiscal period (e.g., "Q1")
languagestringEvent language code
datestringEvent date (ISO 8601)
fileUrlstringURL of the report PDF
filefileDownloaded report PDF stored in execution files

quartr_list_slide_decks

List slide presentations from Quartr, filterable by company, event, document type, document group, and date range.

Input

ParameterTypeRequiredDescription
apiKeystringYesQuartr API key
companyIdsstringNoComma-separated list of Quartr company IDs (e.g., "4742,128")
eventIdsstringNoComma-separated list of Quartr event IDs (e.g., "128301")
tickersstringNoComma-separated list of company tickers (e.g., "AAPL,MSFT")
isinsstringNoComma-separated list of ISINs (e.g., "US0378331005")
ciksstringNoComma-separated list of SEC CIKs (e.g., "0000320193")
countriesstringNoComma-separated list of ISO 3166-1 alpha-2 country codes (e.g., "US,SE")
exchangesstringNoComma-separated list of exchange symbols, without whitespace (e.g., "NasdaqGS")
documentTypeIdsstringNoComma-separated list of document type IDs (e.g., "7,10")
documentGroupIdsstringNoComma-separated list of document group IDs: 1 = Earnings Release, 2 = Press Release, 3 = Interim Report, 4 = Annual Report, 5 = Proxy Statement, 6 = Registration Statement
startDatestringNoOnly return documents dated on or after this ISO 8601 date (e.g., "2024-01-01")
endDatestringNoOnly return documents dated on or before this ISO 8601 date (e.g., "2024-12-31")
expandEventbooleanNoInclude expanded event details on each document
updatedAfterstringNoOnly return data updated after this ISO 8601 date (e.g., "2024-01-01")
updatedBeforestringNoOnly return data updated before this ISO 8601 date (e.g., "2024-12-31")
limitnumberNoMaximum number of items to return in a single request (default: 10, max: 500)
cursornumberNoPagination cursor from the previous response (nextCursor) for the next page
directionstringNoSort direction by id: "asc" or "desc" (default: asc)

Output

ParameterTypeDescription
slideDecksarraySlide decks matching the filters
idnumberQuartr document ID
companyIdnumberQuartr company ID
eventIdnumberQuartr event ID
typeIdnumberDocument type ID
fileUrlstringURL of the document file
createdAtstringCreation timestamp (ISO 8601)
updatedAtstringLast update timestamp (ISO 8601)
eventobjectExpanded event details (present when event expansion is requested)
titlestringEvent title
typeIdnumberEvent type ID
fiscalYearnumberFiscal year
fiscalPeriodstringFiscal period (e.g., "Q1")
languagestringEvent language code
datestringEvent date (ISO 8601)
nextCursornumberCursor for fetching the next page of results (null when no more pages)

quartr_get_slide_deck

Retrieve a slide presentation from Quartr by its document ID and download the PDF file.

Input

ParameterTypeRequiredDescription
apiKeystringYesQuartr API key
slideDeckIdnumberYesQuartr document ID of the slide deck (e.g., 432907)

Output

ParameterTypeDescription
documentobjectSlide deck metadata
idnumberQuartr document ID
companyIdnumberQuartr company ID
eventIdnumberQuartr event ID
typeIdnumberDocument type ID
fileUrlstringURL of the document file
createdAtstringCreation timestamp (ISO 8601)
updatedAtstringLast update timestamp (ISO 8601)
eventobjectExpanded event details (present when event expansion is requested)
titlestringEvent title
typeIdnumberEvent type ID
fiscalYearnumberFiscal year
fiscalPeriodstringFiscal period (e.g., "Q1")
languagestringEvent language code
datestringEvent date (ISO 8601)
fileUrlstringURL of the slide deck PDF
filefileDownloaded slide deck PDF stored in execution files

quartr_list_transcripts

List event transcripts from Quartr, filterable by company, event, document type, document group, and date range.

Input

ParameterTypeRequiredDescription
apiKeystringYesQuartr API key
companyIdsstringNoComma-separated list of Quartr company IDs (e.g., "4742,128")
eventIdsstringNoComma-separated list of Quartr event IDs (e.g., "128301")
tickersstringNoComma-separated list of company tickers (e.g., "AAPL,MSFT")
isinsstringNoComma-separated list of ISINs (e.g., "US0378331005")
ciksstringNoComma-separated list of SEC CIKs (e.g., "0000320193")
countriesstringNoComma-separated list of ISO 3166-1 alpha-2 country codes (e.g., "US,SE")
exchangesstringNoComma-separated list of exchange symbols, without whitespace (e.g., "NasdaqGS")
documentTypeIdsstringNoComma-separated list of document type IDs (e.g., "7,10")
documentGroupIdsstringNoComma-separated list of document group IDs: 1 = Earnings Release, 2 = Press Release, 3 = Interim Report, 4 = Annual Report, 5 = Proxy Statement, 6 = Registration Statement
startDatestringNoOnly return documents dated on or after this ISO 8601 date (e.g., "2024-01-01")
endDatestringNoOnly return documents dated on or before this ISO 8601 date (e.g., "2024-12-31")
expandEventbooleanNoInclude expanded event details on each document
updatedAfterstringNoOnly return data updated after this ISO 8601 date (e.g., "2024-01-01")
updatedBeforestringNoOnly return data updated before this ISO 8601 date (e.g., "2024-12-31")
limitnumberNoMaximum number of items to return in a single request (default: 10, max: 500)
cursornumberNoPagination cursor from the previous response (nextCursor) for the next page
directionstringNoSort direction by id: "asc" or "desc" (default: asc)

Output

ParameterTypeDescription
transcriptsarrayTranscripts matching the filters
idnumberQuartr document ID
companyIdnumberQuartr company ID
eventIdnumberQuartr event ID
typeIdnumberDocument type ID
fileUrlstringURL of the document file
createdAtstringCreation timestamp (ISO 8601)
updatedAtstringLast update timestamp (ISO 8601)
eventobjectExpanded event details (present when event expansion is requested)
titlestringEvent title
typeIdnumberEvent type ID
fiscalYearnumberFiscal year
fiscalPeriodstringFiscal period (e.g., "Q1")
languagestringEvent language code
datestringEvent date (ISO 8601)
nextCursornumberCursor for fetching the next page of results (null when no more pages)

quartr_get_transcript

Retrieve an event transcript from Quartr by its document ID and download the transcript JSON file (paragraphs, sentences, timestamps, and speaker identification).

Input

ParameterTypeRequiredDescription
apiKeystringYesQuartr API key
transcriptIdnumberYesQuartr document ID of the transcript (e.g., 432907)

Output

ParameterTypeDescription
documentobjectTranscript metadata
idnumberQuartr document ID
companyIdnumberQuartr company ID
eventIdnumberQuartr event ID
typeIdnumberDocument type ID
fileUrlstringURL of the document file
createdAtstringCreation timestamp (ISO 8601)
updatedAtstringLast update timestamp (ISO 8601)
eventobjectExpanded event details (present when event expansion is requested)
titlestringEvent title
typeIdnumberEvent type ID
fiscalYearnumberFiscal year
fiscalPeriodstringFiscal period (e.g., "Q1")
languagestringEvent language code
datestringEvent date (ISO 8601)
fileUrlstringURL of the transcript JSON file
filefileDownloaded transcript JSON file stored in execution files

quartr_list_audio

List archived event audio recordings from Quartr, filterable by company, event, and date range. Returns download (MPEG) and streaming (M3U8) URLs.

Input

ParameterTypeRequiredDescription
apiKeystringYesQuartr API key
companyIdsstringNoComma-separated list of Quartr company IDs (e.g., "4742,128")
eventIdsstringNoComma-separated list of Quartr event IDs (e.g., "128301")
tickersstringNoComma-separated list of company tickers (e.g., "AAPL,MSFT")
isinsstringNoComma-separated list of ISINs (e.g., "US0378331005")
ciksstringNoComma-separated list of SEC CIKs (e.g., "0000320193")
countriesstringNoComma-separated list of ISO 3166-1 alpha-2 country codes (e.g., "US,SE")
exchangesstringNoComma-separated list of exchange symbols, without whitespace (e.g., "NasdaqGS")
startDatestringNoOnly return audio dated on or after this ISO 8601 date (e.g., "2024-01-01")
endDatestringNoOnly return audio dated on or before this ISO 8601 date (e.g., "2024-12-31")
expandEventbooleanNoInclude expanded event details on each audio recording
updatedAfterstringNoOnly return data updated after this ISO 8601 date (e.g., "2024-01-01")
updatedBeforestringNoOnly return data updated before this ISO 8601 date (e.g., "2024-12-31")
limitnumberNoMaximum number of items to return in a single request (default: 10, max: 500)
cursornumberNoPagination cursor from the previous response (nextCursor) for the next page
directionstringNoSort direction by id: "asc" or "desc" (default: asc)

Output

ParameterTypeDescription
audioRecordingsarrayAudio recordings matching the filters
idnumberQuartr audio ID
companyIdnumberQuartr company ID
eventIdnumberQuartr event ID
fileUrlstringDownload URL of the audio file (MPEG)
streamUrlstringStreaming URL of the audio (M3U8)
qnanumberTimestamp in seconds where the Q&A section starts
audioMetadataobjectAudio file metadata
sizestringFile size (e.g., "200.00 MB")
durationnumberDuration in seconds
encodingstringAudio encoding
mimetypestringAudio MIME type
createdAtstringCreation timestamp (ISO 8601)
updatedAtstringLast update timestamp (ISO 8601)
eventobjectExpanded event details (present when event expansion is requested)
titlestringEvent title
typeIdnumberEvent type ID
fiscalYearnumberFiscal year
fiscalPeriodstringFiscal period (e.g., "Q1")
languagestringEvent language code
datestringEvent date (ISO 8601)
nextCursornumberCursor for fetching the next page of results (null when no more pages)

quartr_get_audio

Retrieve an archived event audio recording from Quartr by its audio ID. Returns download (MPEG) and streaming (M3U8) URLs.

Input

ParameterTypeRequiredDescription
apiKeystringYesQuartr API key
audioIdnumberYesQuartr audio ID (e.g., 123964)

Output

ParameterTypeDescription
audioobjectThe requested audio recording
idnumberQuartr audio ID
companyIdnumberQuartr company ID
eventIdnumberQuartr event ID
fileUrlstringDownload URL of the audio file (MPEG)
streamUrlstringStreaming URL of the audio (M3U8)
qnanumberTimestamp in seconds where the Q&A section starts
audioMetadataobjectAudio file metadata
sizestringFile size (e.g., "200.00 MB")
durationnumberDuration in seconds
encodingstringAudio encoding
mimetypestringAudio MIME type
createdAtstringCreation timestamp (ISO 8601)
updatedAtstringLast update timestamp (ISO 8601)
eventobjectExpanded event details (present when event expansion is requested)
titlestringEvent title
typeIdnumberEvent type ID
fiscalYearnumberFiscal year
fiscalPeriodstringFiscal period (e.g., "Q1")
languagestringEvent language code
datestringEvent date (ISO 8601)

quartr_list_live_events

List live and upcoming events from Quartr with live audio and transcript stream URLs, filterable by company, live state, and date range.

Input

ParameterTypeRequiredDescription
apiKeystringYesQuartr API key
companyIdsstringNoComma-separated list of Quartr company IDs (e.g., "4742,128")
eventIdsstringNoComma-separated list of Quartr event IDs (e.g., "128301")
tickersstringNoComma-separated list of company tickers (e.g., "AAPL,MSFT")
isinsstringNoComma-separated list of ISINs (e.g., "US0378331005")
ciksstringNoComma-separated list of SEC CIKs (e.g., "0000320193")
countriesstringNoComma-separated list of ISO 3166-1 alpha-2 country codes (e.g., "US,SE")
exchangesstringNoComma-separated list of exchange symbols, without whitespace (e.g., "NasdaqGS")
statesstringNoComma-separated list of live states to filter by: notLive, willBeLive, live, liveFailedInterrupted, liveFailedNoAccess, liveFailedNotStarted, processingRecording, processingRecordingFailed, recordingAvailable
startDatestringNoOnly return events on or after this ISO 8601 date (e.g., "2024-01-01")
endDatestringNoOnly return events on or before this ISO 8601 date (e.g., "2024-12-31")
transcriptVersionstringNoVersion of the live transcript stream: "1.6" or "1.7" (default: 1.6)
updatedAfterstringNoOnly return data updated after this ISO 8601 date (e.g., "2024-01-01")
updatedBeforestringNoOnly return data updated before this ISO 8601 date (e.g., "2024-12-31")
limitnumberNoMaximum number of items to return in a single request (default: 10, max: 500)
cursornumberNoPagination cursor from the previous response (nextCursor) for the next page
directionstringNoSort direction by id: "asc" or "desc" (default: asc)

Output

ParameterTypeDescription
liveEventsarrayLive events matching the filters
idnumberQuartr live event ID
eventIdnumberQuartr event ID
companyIdnumberQuartr company ID
datestringScheduled event date (ISO 8601)
wentLiveAtstringTimestamp when the event went live (ISO 8601)
statestringLive state (notLive, willBeLive, live, liveFailedInterrupted, liveFailedNoAccess, liveFailedNotStarted, processingRecording, processingRecordingFailed, recordingAvailable)
audiostringURL of the live audio stream or recording
transcriptstringURL of the live transcript stream (JSON Lines)
createdAtstringCreation timestamp (ISO 8601)
updatedAtstringLast update timestamp (ISO 8601)
nextCursornumberCursor for fetching the next page of results (null when no more pages)

On this page