Socket
Book a DemoInstallSign in
Socket

@factset/sdk-eventsandtranscripts

Package Overview
Dependencies
Maintainers
4
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@factset/sdk-eventsandtranscripts

Events and Transcripts client library for JavaScript

latest
Source
npmnpm
Version
2.1.0
Version published
Maintainers
4
Created
Source

FactSet

Events and Transcripts client library for JavaScript

API Version npm Apache-2 license

The Calendar Events API provides access to FactSet’s Event Calendar data alongside business logic that allows users to replicate views and functionality consistent with the experience provided by the Workstation. This API provides the ability to pull Event Calendar data based on specific filters.

Events Audio API provides access to historical as well as the latest audio recordings of various company events covered by FactSet. The events include, but are not limited to: earnings calls, conferences, and investor days. This API also provides relevant metadata such as timestamps and identifiers around each audio file.

The Near Real-time Transcripts API enables access to Near Real-time Transcripts provided by CallStreet to time-sensitive clients. This API also provides the relevant speaker metadata along with their confidence scores. This data caters to quant clients interested in building machine learning models. Clients can leverage this API to perform sentiment analysis through natural language processing or machine learning. It can also be used to complement analysis using FactSet's transcripts service.

Transcripts API provides conference call transcripts for companies' publicly held conference calls and a wealth of information regarding upcoming corporate events, such as conference call date and time, phone number and password, type of conference call, and important company investor relations contact information.

This TypeScript/JavaScript package is automatically generated by the OpenAPI Generator project:

  • API version: 2.1.0
  • SDK version: 2.1.0
  • Build package: com.factset.sdk.codegen.FactSetJavascriptClientCodegen

For more information, please visit https://developer.factset.com/contact

Requirements

  • Node.js >= 18

Installation

npm

npm install @factset/sdk-utils @factset/sdk-eventsandtranscripts@2.1.0

yarn

yarn add @factset/sdk-utils @factset/sdk-eventsandtranscripts@2.1.0

Usage

[!IMPORTANT] The parameter variables defined below are just examples and may potentially contain non valid values. Please replace them with valid values.

Example Code

const { ApiClient, CalendarEventsApi } = require('@factset/sdk-eventsandtranscripts');
const { ConfidentialClient } = require('@factset/sdk-utils');

const apiClient = ApiClient.instance;

// Examples for each supported authentication method are below,
// choose one that satisfies your use case.

// (Preferred) OAuth 2.0: FactSetOAuth2
// See https://github.com/FactSet/enterprise-sdk#oauth-20
// for information on how to create the app-config.json file
//
// The confidential client instance should be reused in production environments.
// See https://github.com/FactSet/enterprise-sdk-utils-typescript#authentication
// for more information on using the ConfidentialClient class
apiClient.factsetOauth2Client = new ConfidentialClient('/path/to/app-config.json');

// Basic authentication: FactSetApiKey
// See https://github.com/FactSet/enterprise-sdk#api-key
// for information how to create an API key
// const FactSetApiKey = apiClient.authentications['FactSetApiKey'];
// FactSetApiKey.username = 'USERNAME-SERIAL';
// FactSetApiKey.password = 'API-KEY';

const apiInstance = new CalendarEventsApi();
const companyEventRequest = new eventsandtranscripts.CompanyEventRequest(); // CompanyEventRequest | Company Events request body

// Call api endpoint
apiInstance.getCompanyEvent(companyEventRequest).then(
  data => {

    console.log('API called successfully. Returned data:');
    console.log(data);
  },
  error => {
    console.error(error);
  },
);

Using a Proxy

To add a HTTP proxy for the API client, you can set the proxyUrl for the ApiClient instance:

const { ApiClient } = require('@factset/sdk-eventsandtranscripts');

const apiClient = ApiClient.instance;
apiClient.setProxyUrl('http://username:password@proxy.example.com:8080');

Documentation for API Endpoints

All URIs are relative to https://api.factset.com/content/events/v2

ClassMethodHTTP requestDescription
eventsandtranscripts.CalendarEventsApigetCompanyEventPOST /calendar/eventsRetrieve Company Event data
eventsandtranscripts.EventsAudioApigetAudioHistoryFilesGET /audio/historyRetrieve historical audio recordings and related metadata within FactSet coverage.
eventsandtranscripts.EventsAudioApisearchEventsAudioPOST /audioRetrieve latest audio recordings and related metadata based on different search criteria.
eventsandtranscripts.MetaApigetTimezoneGET /meta/time-zonesReturns the time zones.
eventsandtranscripts.MetaApigetcategoriesGET /meta/categoriesReturns the categories.
eventsandtranscripts.NearRealTimeTranscriptsApigetIndexedNrtGET /nrt/indexedReturns the indexed transcript data in small increments throughout the duration of an active call.
eventsandtranscripts.NearRealTimeTranscriptsApigetSpeakerIdsGET /nrt/speaker-idsReturns the latest speakerIds with the confidence scores generated for an active call.
eventsandtranscripts.NearRealTimeTranscriptsApisearchNrtCallsPOST /nrt/callsReturns the active calls happening at the moment based on ticker/entity or specific IDs.
eventsandtranscripts.TranscriptsApigetTranscriptsIntelligenceGET /transcripts/intelligenceReturns the StreetAccount Transcript Intelligence documents and related metadata within FactSet coverage based on specific date range and various parameters.
eventsandtranscripts.TranscriptsApigetTranscriptsInvestorSlidesGET /transcripts/investor-slidesReturns the investor slides in PDF format and related metadata within FactSet coverage based on specific date range and various parameters.
eventsandtranscripts.TranscriptsApigetTranscriptsinXMLGET /transcripts/response-typeReturns the requested response type of transcript
eventsandtranscripts.TranscriptsApisearchTranscriptsPOST /transcriptsReturns transcript documents and related metadata based on different search criteria.

Documentation for Models

Documentation for Authorization

FactSetApiKey

  • Type: HTTP basic authentication

FactSetOAuth2

  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes: N/A

Contributing

Please refer to the contributing guide.

Copyright 2025 FactSet Research Systems Inc

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Keywords

FactSet

FAQs

Package last updated on 22 Aug 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts