FactSet.SDK.FactSetFunds 0.40.0

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package FactSet.SDK.FactSetFunds --version 0.40.0
                    
NuGet\Install-Package FactSet.SDK.FactSetFunds -Version 0.40.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FactSet.SDK.FactSetFunds" Version="0.40.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FactSet.SDK.FactSetFunds" Version="0.40.0" />
                    
Directory.Packages.props
<PackageReference Include="FactSet.SDK.FactSetFunds" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add FactSet.SDK.FactSetFunds --version 0.40.0
                    
#r "nuget: FactSet.SDK.FactSetFunds, 0.40.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package FactSet.SDK.FactSetFunds@0.40.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=FactSet.SDK.FactSetFunds&version=0.40.0
                    
Install as a Cake Addin
#tool nuget:?package=FactSet.SDK.FactSetFunds&version=0.40.0
                    
Install as a Cake Tool

FactSet

FactSet Funds client library for .NET

API Version Nuget Apache-2 license

FactSet Mutual Funds and ETFs Reference provides fund-specific reference information as well as FactSet's proprietary classification system. It includes but is not limited to the following coverage

  • Fund descriptions
  • A seven-tier classification system
  • Leverage information
  • Fees and expenses
  • Portfolio managers

FactSet Mutual Funds Time Series provides quantitative data items on a historical basis. It includes but is not limited to the following coverage

  • Net asset value
  • Fund flows
  • Assets under management
  • Total return

In addition to core reference and time series data, the API enables broader fund analytics and workflows, including:

  • Fund summary and classification insights such as domicile, structure, segments, and similar funds
  • Performance analytics including historical returns, snapshot returns across time horizons, and yield data
  • Cost, fee, and risk metrics including expense ratios, regulatory/tax exposure, and risk measures
  • Portfolio exposure and analytics including asset allocation, sector weightage, geographic exposure, and top holdings
  • Trading and liquidity characteristics for evaluating tradability
  • ETF-specific scoring and ratings to assess efficiency, tradability, and fit relative to benchmarks
  • Distribution and income data for understanding payouts and investor returns <p>This API is rate-limited to 10 requests per second and 10 concurrent requests per user.

This .NET package is automatically generated by the OpenAPI Generator project:

  • API version: 3.0.0
  • SDK version: 0.40.0
  • Build package: com.factset.sdk.codegen.FactSetCSharpNetCoreClientCodegen

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

Requirements

  • .NET Standard >= 2.0

Installation

.NET CLI

dotnet add package FactSet.SDK.Utils
dotnet add package FactSet.SDK.FactSetFunds -v 0.40.0

NuGet

nuget install FactSet.SDK.Utils
nuget install FactSet.SDK.FactSetFunds -Version 0.40.0

Usage

  1. Generate authentication credentials.
  2. Setup .NET Standard 2.0 compatible environment.
  3. Install dependencies.
  4. Run the following:

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.FactSetFunds.Api;
using FactSet.SDK.FactSetFunds.Client;
using FactSet.SDK.FactSetFunds.Model;

namespace Example
{
    public static class GetFinancialKeyItemsExample
    {
        public static async Task Main()
        {
            var config = new FactSet.SDK.FactSetFunds.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 PortfolioExposureAndAnalysisApi(config);
            var ids = new List<string>(); // List<string> | The requested fund identifier. FactSet Identifiers, tickers, CUSIP, SEDOL, and ISIN are accepted inputs. <p>***IDs limit** =  200 per request*</p> *<p>Make note, GET Method URL request lines are also limited to a total length of 8192 bytes (8KB). In cases where the service allows for thousands of IDs, which may lead to exceeding this request line limit of 8KB, its advised for any requests with large request lines to be requested through the respective \"POST\" method.</p>*
            var keyItemsType = (KeyItemsType) "GROWTH";  // KeyItemsType? | The Key Items type report. (optional) 

            try
            {
                // Get Financial Key Items for Funds
                FinancialsKeyItemsResponse result = apiInstance.GetFinancialKeyItems(ids, keyItemsType);
                Console.WriteLine(result.ToJson());
            }
            catch (ApiException e)
            {
                Console.WriteLine("Exception when calling PortfolioExposureAndAnalysisApi.GetFinancialKeyItems: " + 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/content/factset-funds/v3

Class Method HTTP request Description
PortfolioExposureAndAnalysisApi GetFinancialKeyItems GET /financials/key-items Get Financial Key Items for Funds
PortfolioExposureAndAnalysisApi GetFinancialKeyItemsForList POST /financials/key-items Get Financial Key Items for Funds
PortfolioExposureAndAnalysisApi GetPortfolioAnalytics GET /portfolio/analytics Get Asset Allocation, Sector Weightage, Geographic Revenue and Market Capitalization details
PortfolioExposureAndAnalysisApi GetPortfolioAnalyticsForList POST /portfolio/analytics Get Asset Allocation, Sector Weightage, Geographic Revenue and Market Capitalization details
PortfolioExposureAndAnalysisApi GetPortfolioStatistics GET /portfolio/statistics Get Portfolio Statistics for Funds
PortfolioExposureAndAnalysisApi GetPortfolioStatisticsForList POST /portfolio/statistics Get Portfolio Statistics for Funds
PortfolioExposureAndAnalysisApi GetRiskAnalytics GET /risk-analytics Get Credit Risk and Rate Risk Analytics
PortfolioExposureAndAnalysisApi GetRiskAnalyticsForList POST /risk-analytics Get Credit Risk and Rate Risk Analytics.
PortfolioExposureAndAnalysisApi GetTop10Holdings GET /holdings/top-10 Get Top 10 Holdings
PortfolioExposureAndAnalysisApi GetTop10HoldingsForList POST /holdings/top-10 Get Top 10 Holdings
PricesReturnsAndDistributionsApi GetFundsDistributions GET /distributions Get Fund Distributions (Current or Historical)
PricesReturnsAndDistributionsApi GetFundsDistributionsForList POST /distributions Get Fund Distributions (Current or Historical) for a list
PricesReturnsAndDistributionsApi GetFundsPrices GET /prices Get Fund Prices (NAV) for a requested time-series
PricesReturnsAndDistributionsApi GetFundsPricesForList POST /prices Get Fund Prices (NAV) for a requested date range and large list of IDs.
PricesReturnsAndDistributionsApi GetFundsReturns GET /returns Get Fund Returns for a requested time-series
PricesReturnsAndDistributionsApi GetFundsReturnsForList POST /returns Get Fund Returns for a requested time-series and large list of IDs.
PricesReturnsAndDistributionsApi GetFundsReturnsRange GET /returns/range Get Fund Returns for a user-defined date range
PricesReturnsAndDistributionsApi GetFundsReturnsRangeForList POST /returns/range Get Fund Returns over pre-defined time horizons as of a specific date for large list of IDs.
PricesReturnsAndDistributionsApi GetFundsReturnsSnapshot GET /returns/snapshot Get Fund Returns over pre-defined time horizons as of a specific date.
PricesReturnsAndDistributionsApi GetFundsReturnsSnapshotForList POST /returns/snapshot Get Fund Returns over pre-defined time horizons as of a specific date.
PricesReturnsAndDistributionsApi GetFundsYield GET /yields Get Fund Yield for a user-defined date range for large list of IDs.
PricesReturnsAndDistributionsApi GetFundsYieldForList POST /yields Get Fund Yield for a user-defined date range for large list of IDs.
ScoringApi GetScoringDetails GET /scoring Get Scoring Details for ETFs
ScoringApi GetScoringForList POST /scoring Get Scoring Details for ETFs
ScreenerOperationsApi CreateContentSet POST /screener/content-sets/create Create a new custom content set with required fields from the default content sets.
ScreenerOperationsApi DeleteContentSet DELETE /screener/content-sets/{name} Delete a custom content set.
ScreenerOperationsApi GetContentSets GET /screener/content-sets Get the content sets that are permissioned for the user.
ScreenerOperationsApi GetDistinctCount POST /screener/distinct-count Returns the number of records for a given field spread across all possible values.
ScreenerOperationsApi GetFields GET /screener/fields Get the list of fields available for given content set.
ScreenerOperationsApi GetScreenerData POST /screener/search Returns all the records that match the given criteria.
ScreenerOperationsApi GetStatistics POST /screener/statistics Returns the statistics and histogram data for a given field within the specified content sets.
SummarySegmentsAndStatsApi GetFundsAum GET /aum Get Fund AUM for a requested date range and list of IDs
SummarySegmentsAndStatsApi GetFundsAumForList POST /aum Get Fund AUM for a requested date range and large list of IDs
SummarySegmentsAndStatsApi GetFundsFlows GET /flows Get Fund Flows for a requested date range and list of IDs
SummarySegmentsAndStatsApi GetFundsFlowsForList POST /flows Get Fund Flows for a requested date range and large list of IDs
SummarySegmentsAndStatsApi GetFundsSummary GET /summary Get basic reference summary data for a Fund.
SummarySegmentsAndStatsApi GetFundsSummaryForList POST /summary Get basic reference data for a large list of Fund IDs.
SummarySegmentsAndStatsApi GetSegmentsAndStructure GET /segments-and-structure Get Fund Classification, Similar Funds, Segments, and Fund Structure
SummarySegmentsAndStatsApi GetSegmentsAndStructureForList POST /segments-and-structure Get Fund Classification, Similar Funds, Segments, and Fund Structure.
TaxesFeesAndRisksApi GetFundsCostsFees GET /costs-fees Get the Fund's Costs, Investment minimums and Risk, and Fees.
TaxesFeesAndRisksApi GetFundsCostsFeesForList POST /costs-fees Get the Fund's Costs, Investment minimums and Risk, and Fees for large list of IDs.
TaxesFeesAndRisksApi GetTaxesAndRisks GET /taxes-and-risks Get Regulatory/Tax, Tax Exposure, and Risk Measures
TaxesFeesAndRisksApi GetTaxesAndRisksForList POST /taxes-and-risks Get Regulatory/Tax, Tax Exposure, and Risk Measures.
TradingApi GetTrading GET /trading Get Trading Characteristics
TradingApi GetTradingForList POST /trading Get Trading Characteristics

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 2026 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 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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
2.2.0 269 9/23/2025
2.1.0 287 9/10/2025
2.0.0 552 7/21/2025
1.4.0 283 6/16/2025
1.3.0 259 2/11/2025
1.2.0 284 8/30/2024
1.1.2 273 7/11/2024
1.1.1 286 4/10/2024
1.1.0 295 2/22/2024
1.0.7 368 10/25/2023
1.0.6 282 8/30/2023
1.0.5 289 8/11/2023
1.0.4 278 6/6/2023
1.0.3 302 5/11/2023
1.0.2 389 3/1/2023
1.0.1 418 2/24/2023
1.0.0 568 8/31/2022
0.40.1 105 4/29/2026
0.40.0 102 4/24/2026
0.21.0 557 7/21/2022
Loading failed

Refer to Changelog on GitHub source repository