FactSet.SDK.Formula
2.1.3
Prefix Reserved
See the version list below for details.
dotnet add package FactSet.SDK.Formula --version 2.1.3
NuGet\Install-Package FactSet.SDK.Formula -Version 2.1.3
<PackageReference Include="FactSet.SDK.Formula" Version="2.1.3" />
paket add FactSet.SDK.Formula --version 2.1.3
#r "nuget: FactSet.SDK.Formula, 2.1.3"
// Install FactSet.SDK.Formula as a Cake Addin #addin nuget:?package=FactSet.SDK.Formula&version=2.1.3 // Install FactSet.SDK.Formula as a Cake Tool #tool nuget:?package=FactSet.SDK.Formula&version=2.1.3
Formula client library for .NET
FactSet Formula API
FactSet’s Formula API is a modern, flexible, formula-based API that enables users to access FactSet’s wide range of financial data and content. The API offers two endpoints, one optimized for time-series analysis and one designed for cross-sectional analysis, providing users a simplified interface into FactSet’s expansive offering. By providing two endpoints, it allows for the optimization of user workflows, while reducing complexity.
Leverage the power and flexibility of the Formula API to -
- Pull data from across most content sets that a user has access to in a single request
- Include business logic and mathematical operations in request
- Submit a dynamic universe in both endpoints
- Return the fsymId to easily combine with other FactSet content / products
- Set the trading calendar
- Define custom display names
Formula API Request Builder
The Formula API Request Builder provides users everything they need to form a Formula API request. In the Request Builder, you can select identifiers, build a universe expression, select FQL or Screening formulas, easily apply business logic and mathematical functions to the FQL or Screening formulas, specify optional parameters, and construct a GET or POST request. The Request Builder eliminates the need to have previous FQL and Screening knowledge and allows you to quickly find your desired data items and form the request.
The Formula API Request Builder can be accessed by navigating to https://developer.factset.com/formula-api-request-builder and logging in using your FactSet.net ID. When using the Request Builder to construct requests for the one of the Formula API's endpoints, be sure to toggle to the correct endpoint at the top of the page.
How to Check the Health and Availability of the Formula API
Please use the below endpoint to check the health and availability of the Formula API. You must be authorized for this API to use the Health endpoint.
https://api.factset.com/formula-api/health
How to Programmatically Download API Specification File
You can download the FactSet Formula API Specification File in .yaml. using the "Download Spec" button to the right of the version number. This specification can then be used for Codegen to create your own SDKs.
This .NET package is automatically generated by the OpenAPI Generator project:
- API version: 1.5.0
- Package version: 2.1.3
- 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.Formula
NuGet
nuget install FactSet.SDK.Utils
nuget install FactSet.SDK.Formula
Usage
- Generate authentication credentials.
- Setup .NET Standard 2.0 compatible environment.
- Install dependencies.
- Run the following:
using System;
using System.Net;
using System.Threading.Tasks;
using FactSet.SDK.Utils.Authentication;
using FactSet.SDK.Formula.Api;
using FactSet.SDK.Formula.Client;
using FactSet.SDK.Formula.Model;
namespace Example
{
public static class GetBatchDataExample
{
public static async Task Main()
{
var config = new FactSet.SDK.Formula.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
// 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 BatchProcessingApi(config);
var id = "id_example"; // Guid | Batch Request identifier.
try
{
// Returns the response for a Batch Request
BatchProcessingApi.GetBatchDataResponseWrapper result = apiInstance.GetBatchData(id);
switch (result.StatusCode)
{
case (HttpStatusCode)200:
Console.WriteLine(result.Response200);
break;
case (HttpStatusCode)202:
Console.WriteLine(result.Response202);
break;
}
}
catch (ApiException e)
{
Console.WriteLine("Exception when calling BatchProcessingApi.GetBatchData: " + 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/formula-api
Class | Method | HTTP request | Description |
---|---|---|---|
BatchProcessingApi | GetBatchData | GET /v1/batch-result | Returns the response for a Batch Request |
BatchProcessingApi | GetBatchDataWithPost | POST /v1/batch-result | Returns the status for a Batch Request |
BatchProcessingApi | GetBatchStatus | GET /v1/batch-status | Returns the status for a Batch Request |
BatchProcessingApi | GetBatchStatusWithPost | POST /v1/batch-status | Returns the status for a Batch Request |
CrossSectionalApi | GetCrossSectionalData | GET /v1/cross-sectional | Retrieve data items (Screening formulas) for a list of identifiers or defined universe. |
CrossSectionalApi | GetCrossSectionalDataForList | POST /v1/cross-sectional | Retrieve data items (Screening formulas) for a list of identifiers or defined universe. |
TimeSeriesApi | GetTimeSeriesData | GET /v1/time-series | Retrieve data items (FQL formulas) for a list of identifiers or defined universe. |
TimeSeriesApi | GetTimeSeriesDataForList | POST /v1/time-series | Retrieve data items (FQL formulas) for a list of identifiers or defined universe. |
Documentation for Models
- Model.BatchDataRequest
- Model.BatchDataRequestData
- Model.BatchDataResponse
- Model.BatchStatus
- Model.BatchStatusResponse
- Model.CrossSectionalRequest
- Model.CrossSectionalRequestData
- Model.CrossSectionalResponse
- Model.CrossSectionalResponseObjectItems
- Model.CrossSectionalResultObjectFlattened
- Model.CrossSectionalResultObjectFlattenedAddl
- Model.CrossSectionalResultObjectNonflattened
- Model.CrossSectionalResultObjectNonflattenedResultAttribute
- Model.CrossSectionalResultObjectNonflattenedWarnings
- Model.ErrorDetail
- Model.TimeSeriesRequest
- Model.TimeSeriesRequestData
- Model.TimeSeriesResponse
- Model.TimeSeriesResponseObjectItems
- Model.TimeSeriesResultObjectFlattened
- Model.TimeSeriesResultObjectFlattenedAddl
- Model.TimeSeriesResultObjectNonflattened
- Model.TimeSeriesResultObjectNonflattenedArray
- Model.TimeSeriesResultObjectNonflattenedBase
- Model.TimeSeriesResultObjectNonflattenedMatrix
- Model.TimeSeriesResultObjectNonflattenedScalar
- Model.TimeSeriesResultObjectNonflattenedTimeseriesObject
- Model.TimeSeriesScalarValue
- Model.TimeSeriesTimeseriesObject
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.1)
- 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 |
---|---|---|
3.0.0 | 136 | 8/22/2024 |
2.3.1 | 91 | 7/11/2024 |
2.3.0 | 102 | 6/19/2024 |
2.2.5 | 107 | 5/15/2024 |
2.2.4 | 120 | 4/10/2024 |
2.2.3 | 116 | 2/28/2024 |
2.2.2 | 113 | 2/22/2024 |
2.2.1 | 1,687 | 10/25/2023 |
2.2.0 | 139 | 9/26/2023 |
2.1.5 | 131 | 9/12/2023 |
2.1.4 | 128 | 8/30/2023 |
2.1.3 | 141 | 8/11/2023 |
2.1.2 | 142 | 6/6/2023 |
2.1.1 | 139 | 5/11/2023 |
2.1.0 | 172 | 4/12/2023 |
2.0.2 | 215 | 3/1/2023 |
2.0.1 | 222 | 2/24/2023 |
2.0.0 | 260 | 1/26/2023 |
1.0.0 | 378 | 8/31/2022 |
0.21.0 | 390 | 7/21/2022 |
0.20.0 | 377 | 5/24/2022 |
Refer to Changelog on GitHub source repository