FactSet.SDK.DocumentsDistributorDocuments
0.21.11
Prefix Reserved
dotnet add package FactSet.SDK.DocumentsDistributorDocuments --version 0.21.11
NuGet\Install-Package FactSet.SDK.DocumentsDistributorDocuments -Version 0.21.11
<PackageReference Include="FactSet.SDK.DocumentsDistributorDocuments" Version="0.21.11" />
paket add FactSet.SDK.DocumentsDistributorDocuments --version 0.21.11
#r "nuget: FactSet.SDK.DocumentsDistributorDocuments, 0.21.11"
// Install FactSet.SDK.DocumentsDistributorDocuments as a Cake Addin #addin nuget:?package=FactSet.SDK.DocumentsDistributorDocuments&version=0.21.11 // Install FactSet.SDK.DocumentsDistributorDocuments as a Cake Tool #tool nuget:?package=FactSet.SDK.DocumentsDistributorDocuments&version=0.21.11
Documents Distributor - Documents client library for .NET
Documents APIs that provide filings such as Global Filings and XML files such as StreetAccount
Global Filings API provides the capability to search and download filings documents from various exchanges around the world. This API will provide access to the full history and the ability to search by date and dataset(source). It does not provide real-time updates to the filings documents. Filings providers currently include EDGAR
Note: The real-time updates to the filing documents will be available within week to ten days and per request able to query up to 8 days of data
StreetAccount XML API provides access to historical StreetAccount (SA) news. SA provides a summary for various corporate and market news written by journalist with background in financial markets.
The API delivers SA stories in XML format based on user-specified date input parameters. When the API request is completed, output files will be made available back to the users through a secure URL. This API has three endpoints (1) Request Files (2) Check Status (3) Get Files.
This API only supports adhoc requests to retrieve historical files and does not support real-time files and if require real-time push should consider the other three methods (pushed via SFTP, to QNT account, or users Azure Storage)
Both historical and real-time Street Account news is also delivered via SFTP, to users QNT account, or users Azure Storage.
Files delivered contain both metadata and content body in each file. This eliminates the need to make multiple requests through multiple services to get all the information.
News API provides access to historical news. This provides a summary for various corporate and market news written by journalist with background in financial markets.
The API delivers stories in different format based on user-specified date input parameters. When the API request is completed, output files will be made available back to the users through a secure URL. This API has three endpoints (1) Request Files (2) Check Status (3) Get Files
This .NET package is automatically generated by the OpenAPI Generator project:
- API version: 1.0.0
- SDK version: 0.21.11
- Build package: com.factset.sdk.codegen.FactSetCSharpNetCoreClientCodegen
Requirements
- .NET Standard >= 2.0
Installation
.NET CLI
dotnet add package FactSet.SDK.Utils
dotnet add package FactSet.SDK.DocumentsDistributorDocuments -v 0.21.11
NuGet
nuget install FactSet.SDK.Utils
nuget install FactSet.SDK.DocumentsDistributorDocuments -Version 0.21.11
Usage
- Generate authentication credentials.
- Setup .NET Standard 2.0 compatible environment.
- Install dependencies.
- Run the following:
[!IMPORTANT] The parameter variables defined below are just examples and may potentially contain non valid values. Please replace them with valid values.
Example Code
using System;
using System.Threading.Tasks;
using FactSet.SDK.Utils.Authentication;
using FactSet.SDK.DocumentsDistributorDocuments.Api;
using FactSet.SDK.DocumentsDistributorDocuments.Client;
using FactSet.SDK.DocumentsDistributorDocuments.Model;
namespace Example
{
public static class GlobalFilingsV1ListFilesGetExample
{
public static async Task Main()
{
var config = new FactSet.SDK.DocumentsDistributorDocuments.Client.Configuration();
// 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-dotnet#authentication
// for more information on using the ConfidentialClient class
ConfidentialClient confidentialClient = await ConfidentialClient.CreateAsync("/path/to/app-config.json");
config.OAuth2Client = confidentialClient;
/* Basic authentication: FactSetApiKey */
// See https://github.com/FactSet/enterprise-sdk#api-key
// for information how to create an API key
// config.Username = "USERNAME-SERIAL";
// config.Password = "API-KEY";
var apiInstance = new GlobalFilingsAPIApi(config);
var dataset = "edgar"; // string | This parameter filters the results based on the dataset of the filings documents.
var startDate = DateTime.Parse("2013-10-20"); // DateTime | The earliest date the API should fetch for. Dates can be YYYY-MM-DD format
var endDate = DateTime.Parse("2013-10-20"); // DateTime | The date after upto eight days of the earliest date given the API should fetch for. Dates can be YYYY-MM-DD format
try
{
// Retrieve filings within FactSet coverage
List<FilingsFiles> result = apiInstance.GlobalFilingsV1ListFilesGet(dataset, startDate, endDate);
Console.WriteLine(result.ToJson());
}
catch (ApiException e)
{
Console.WriteLine("Exception when calling GlobalFilingsAPIApi.GlobalFilingsV1ListFilesGet: " + e.Message );
Console.WriteLine("Status Code: "+ e.ErrorCode);
Console.WriteLine(e.StackTrace);
}
}
}
}
Using a Proxy
To use the API client with a HTTP proxy, setup a System.Net.WebProxy
Configuration c = new Configuration();
System.Net.WebProxy webProxy = new System.Net.WebProxy("http://myProxyUrl:80/");
webProxy.Credentials = System.Net.CredentialCache.DefaultCredentials;
c.Proxy = webProxy;
Documentation for API Endpoints
All URIs are relative to https://api.factset.com/bulk-documents
Class | Method | HTTP request | Description |
---|---|---|---|
GlobalFilingsAPIApi | GlobalFilingsV1ListFilesGet | GET /global-filings/v1/list-files | Retrieve filings within FactSet coverage |
NewsAPIApi | AsynchNewsV1CheckStatusGet | GET /asynch/news/v1/check-status | Returns the status and percentDone of the requested jobID and source |
NewsAPIApi | AsynchNewsV1GetFilesGet | GET /asynch/news/v1/get-files | Returns the news filings for the specified daterange and source |
NewsAPIApi | AsynchNewsV1RequestFilesGet | GET /asynch/news/v1/request-files | Returns the jobID |
StreetAccountXMLAPIApi | AsynchStreetaccountV1CheckStatusGet | GET /asynch/streetaccount/v1/check-status | Returns the status and percentDone of the requested jobID |
StreetAccountXMLAPIApi | AsynchStreetaccountV1GetFilesGet | GET /asynch/streetaccount/v1/get-files | Returns the SA XML files for the specified daterange |
StreetAccountXMLAPIApi | AsynchStreetaccountV1RequestFilesGet | GET /asynch/streetaccount/v1/request-files | Returns the jobID |
Documentation for Models
- Model.Checkstatus
- Model.CheckstatusResponse
- Model.Checkstatusone
- Model.FilingsFiles
- Model.Getfiles
- Model.GetfilesResponse
- Model.Getfilesone
- Model.IsPartialOne
- Model.MetaOne
- Model.NewsStatus
- Model.NewscheckstatusResponse
- Model.NewsgetfilesResponse
- Model.NewsrequestfilesResponse
- Model.PaginationOne
- Model.RequestfilesResponse
- Model.Status
- Model.StreetAccountStatus
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
Copyright 2022 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.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- FactSet.SDK.Utils (>= 1.0.0)
- JsonSubTypes (>= 1.8.0)
- Newtonsoft.Json (>= 13.0.3)
- Polly (>= 7.2.2)
- RestSharp (>= 106.15.0)
- System.ComponentModel.Annotations (>= 5.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.21.11 | 104 | 7/11/2024 |
0.21.10 | 134 | 4/10/2024 |
0.21.9 | 272 | 10/25/2023 |
0.21.8 | 138 | 8/30/2023 |
0.21.7 | 146 | 8/11/2023 |
0.21.6 | 151 | 6/6/2023 |
0.21.5 | 155 | 5/11/2023 |
0.21.4 | 240 | 3/1/2023 |
0.21.3 | 239 | 2/24/2023 |
0.21.2 | 379 | 8/31/2022 |
0.21.0 | 409 | 7/21/2022 |
0.20.1 | 403 | 6/1/2022 |
0.20.0 | 411 | 5/24/2022 |
0.9.1 | 399 | 2/14/2022 |
0.9.0 | 403 | 2/2/2022 |
Refer to Changelog on GitHub source repository