Quotes API for Digital Portals client library for Python
Project description
Quotes API for Digital Portals client library for Python
The Quotes API combines endpoints for retrieving security end-of-day, delayed, and realtime prices with performance key figures and basic reference data on the security and market level.
The API supports over 20 different price types for each quote and comes with basic search endpoints based on security identifiers and instrument names. Market coverage is included in the Sample Use Cases section below.
The Digital Portal use case is focused on high-performance applications that are
- serving millions of end-users,
- accessible by client browsers via the internet,
- supporting subscriptions for streamed updates out-of-the-box,
- typically combining a wide variety of for Digital Portals-APIs into a highly use-case specific solution for customers,
- integrated into complex infrastructures such as existing frontend frameworks, authentication services.
All APIs labelled for Digital Portals have been designed for direct use by client web applications and feature extreme low latency: The average response time across all endpoints is 30 ms whereas 99% of all requests are answered in close to under 300ms.
See the Time Series API for Digital Portals for direct access to price histories, and the News API for Digital Portals for searching and fetching related news.
This Python package is automatically generated by the OpenAPI Generator project:
- API version: 2
- Package version: 0.10.5
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
Requirements
- Python >= 3.7
Installation
Poetry
poetry add fds.sdk.utils fds.sdk.QuotesAPIforDigitalPortals
pip
pip install fds.sdk.utils fds.sdk.QuotesAPIforDigitalPortals
Usage
- Generate authentication credentials.
- Setup Python environment.
-
Install and activate python 3.7+. If you're using pyenv:
pyenv install 3.9.7 pyenv shell 3.9.7
-
(optional) Install poetry.
-
- Install dependencies.
- Run the following:
from fds.sdk.utils.authentication import ConfidentialClient
import fds.sdk.QuotesAPIforDigitalPortals
from fds.sdk.QuotesAPIforDigitalPortals.api import basic_api
from fds.sdk.QuotesAPIforDigitalPortals.models import *
from dateutil.parser import parse as dateutil_parser
from pprint import pprint
# See configuration.py for a list of all supported configuration parameters.
# 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-python#authentication
# for more information on using the ConfidentialClient class
configuration = fds.sdk.QuotesAPIforDigitalPortals.Configuration(
fds_oauth_client=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
# configuration = fds.sdk.QuotesAPIforDigitalPortals.Configuration(
# username='USERNAME-SERIAL',
# password='API-KEY'
# )
# Enter a context with an instance of the API client
with fds.sdk.QuotesAPIforDigitalPortals.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = basic_api.BasicApi(api_client)
attributes = [
"_attributes_example",
] # [str] | Limit the attributes returned in the response to the specified set. (optional)
try:
# List of asset classes.
api_response = api_instance.get_basic_asset_class_list(attributes=attributes)
pprint(api_response)
except fds.sdk.QuotesAPIforDigitalPortals.ApiException as e:
print("Exception when calling BasicApi->get_basic_asset_class_list: %s\n" % e)
# Get response, http status code and response headers
# try:
# # List of asset classes.
# api_response, http_status_code, response_headers = api_instance.get_basic_asset_class_list_with_http_info(attributes=attributes)
# pprint(api_response)
# pprint(http_status_code)
# pprint(response_headers)
# except fds.sdk.QuotesAPIforDigitalPortals.ApiException as e:
# print("Exception when calling BasicApi->get_basic_asset_class_list: %s\n" % e)
# Get response asynchronous
# try:
# # List of asset classes.
# async_result = api_instance.get_basic_asset_class_list_async(attributes=attributes)
# api_response = async_result.get()
# pprint(api_response)
# except fds.sdk.QuotesAPIforDigitalPortals.ApiException as e:
# print("Exception when calling BasicApi->get_basic_asset_class_list: %s\n" % e)
# Get response, http status code and response headers asynchronous
# try:
# # List of asset classes.
# async_result = api_instance.get_basic_asset_class_list_with_http_info_async(attributes=attributes)
# api_response, http_status_code, response_headers = async_result.get()
# pprint(api_response)
# pprint(http_status_code)
# pprint(response_headers)
# except fds.sdk.QuotesAPIforDigitalPortals.ApiException as e:
# print("Exception when calling BasicApi->get_basic_asset_class_list: %s\n" % e)
Using Pandas
To convert an API response to a Pandas DataFrame, it is necessary to transform it first to a dictionary.
import pandas as pd
response_dict = api_response.to_dict()['data']
simple_json_response = pd.DataFrame(response_dict)
nested_json_response = pd.json_normalize(response_dict)
Debugging
The SDK uses the standard library logging
module.
Setting debug
to True
on an instance of the Configuration
class sets the log-level of related packages to DEBUG
and enables additional logging in Pythons HTTP Client.
Note: This prints out sensitive information (e.g. the full request and response). Use with care.
import logging
import fds.sdk.QuotesAPIforDigitalPortals
logging.basicConfig(level=logging.DEBUG)
configuration = fds.sdk.QuotesAPIforDigitalPortals.Configuration(...)
configuration.debug = True
Documentation for API Endpoints
All URIs are relative to https://api.factset.com/wealth/v1
Class | Method | HTTP request | Description |
---|---|---|---|
BasicApi | get_basic_asset_class_list | GET /basic/assetClass/list | List of asset classes. |
BasicApi | get_basic_benchmark_type_list | GET /basic/benchmark/type/list | List of benchmark types. |
BasicApi | get_basic_frequency_type_list | GET /basic/frequency/type/list | List of frequency types. |
BasicApi | get_basic_language_get | GET /basic/language/get | Details for a language. |
BasicApi | get_basic_language_get_by_code | GET /basic/language/getByCode | Details for a language identified by code. |
BasicApi | get_basic_language_list | GET /basic/language/list | List of languages. |
BasicApi | get_basic_market_get | GET /basic/market/get | Details of a market. |
BasicApi | get_basic_market_group_list | GET /basic/market/group/list | List of market groups. |
BasicApi | get_basic_market_type_list | GET /basic/market/type/list | List of market types. |
BasicApi | get_basic_media_kind_list | GET /basic/media/kind/list | List of media kinds. |
BasicApi | get_basic_region_continent_get | GET /basic/region/continent/get | Details for a continent. |
BasicApi | get_basic_region_continent_list | GET /basic/region/continent/list | List of continents. |
BasicApi | get_basic_region_country_get | GET /basic/region/country/get | Details for a country. |
BasicApi | get_basic_region_country_get_by_code | GET /basic/region/country/getByCode | Details for a country identified by code. |
BasicApi | get_basic_region_country_list | GET /basic/region/country/list | List of countries. |
BasicApi | get_basic_region_get | GET /basic/region/get | Details for a region. |
BasicApi | get_basic_region_list | GET /basic/region/list | List of regions. |
BasicApi | get_basic_timezone_get | GET /basic/timezone/get | Details of a timezone. |
BasicApi | get_basic_timezone_get_by_name | GET /basic/timezone/getByName | Details of a timezone identified by name. |
BasicApi | get_basic_value_unit_alternative_list | GET /basic/valueUnit/alternative/list | List of alternative units. |
BasicApi | get_basic_value_unit_currency_fractional_get | GET /basic/valueUnit/currency/fractional/get | Details of a fractional currency. |
BasicApi | get_basic_value_unit_currency_fractional_list | GET /basic/valueUnit/currency/fractional/list | List of fractional currencies. |
BasicApi | get_basic_value_unit_get | GET /basic/valueUnit/get | Details of a value unit. |
BasicApi | post_basic_background_text_type_list | POST /basic/backgroundText/type/list | List of background text types. |
BasicApi | post_basic_delivery_list | POST /basic/delivery/list | List of deliveries. |
BasicApi | post_basic_market_list | POST /basic/market/list | List of markets. |
BasicApi | post_basic_media_type_list | POST /basic/media/type/list | List of Internet media types. |
BasicApi | post_basic_mic_operating_list | POST /basic/mic/operating/list | List of operating market identifier codes (MIC). |
BasicApi | post_basic_timezone_list | POST /basic/timezone/list | List of timezones. |
BasicApi | post_basic_value_unit_currency_list | POST /basic/valueUnit/currency/list | List of currencies. |
BasicApi | post_basic_value_unit_currency_main_list | POST /basic/valueUnit/currency/main/list | List of main currencies. |
BasicApi | post_basic_value_unit_list | POST /basic/valueUnit/list | List of value units. |
CategoryApi | get_category_dataset_list | GET /category/dataset/list | List of entitled category datasets. |
CategoryApi | get_category_get | GET /category/get | Details of a category. |
CategoryApi | get_category_instrument_list | GET /category/instrument/list | List of instruments where a specific dataset has assigned a given category. |
CategoryApi | get_category_level_get | GET /category/level/get | Details of a category level. |
CategoryApi | get_category_list | GET /category/list | List of categories. |
CategoryApi | get_category_list_by_level | GET /category/listByLevel | List of categories assigned to a category level. |
CategoryApi | get_category_list_by_system | GET /category/listBySystem | List of categories assigned to a category system. |
CategoryApi | get_category_path_get | GET /category/path/get | Path from the first level to the level of a specific category. |
CategoryApi | get_category_system_get | GET /category/system/get | Details of an entitled category system. |
CategoryApi | get_category_system_list | GET /category/system/list | List of entitled category systems. |
CategoryApi | get_category_system_type_list | GET /category/system/type/list | List of category system types. |
InstrumentApi | get_instrument_background_text_list_by_instrument | GET /instrument/backgroundText/listByInstrument | Background texts of an instrument. |
InstrumentApi | get_instrument_compliance_property_list_by_instrument | GET /instrument/complianceProperty/listByInstrument | Compliance properties of an instrument. |
InstrumentApi | get_instrument_composite_get | GET /instrument/composite/get | Composite instrument and its components. |
InstrumentApi | get_instrument_coupon_day_count_convention_type_list | GET /instrument/coupon/dayCountConvention/type/list | List of day count convention types. |
InstrumentApi | get_instrument_coupon_interest_rate_type_list | GET /instrument/coupon/interestRate/type/list | List of interest rate types. |
InstrumentApi | get_instrument_coupon_key_data_get | GET /instrument/coupon/keyData/get | Interest rate details for selected periods of an interest-bearing instrument. |
InstrumentApi | get_instrument_coupon_list | GET /instrument/coupon/list | List of coupons for an interest-bearing instrument. |
InstrumentApi | get_instrument_cross_reference_get_by_isin | GET /instrument/crossReference/getByISIN | Translate ISIN to instrument. |
InstrumentApi | get_instrument_cross_reference_get_by_wkn | GET /instrument/crossReference/getByWKN | Translate WKN to instrument. |
InstrumentApi | get_instrument_cross_reference_history_get_by_isin | GET /instrument/crossReference/history/getByISIN | ISIN to instrument translation history. |
InstrumentApi | get_instrument_cross_reference_history_get_by_wkn | GET /instrument/crossReference/history/getByWKN | WKN to instrument translation history. |
InstrumentApi | get_instrument_exchange_rate_get | GET /instrument/exchangeRate/get | Retrieve an exchange rate instrument identifier. |
InstrumentApi | get_instrument_exchange_rate_get_by_iso_code | GET /instrument/exchangeRate/getByISOCode | Retrieve an exchange rate instrument identifier. |
InstrumentApi | get_instrument_get | GET /instrument/get | Basic data for an instrument. |
InstrumentApi | get_instrument_get_by_notation | GET /instrument/getByNotation | Basic data for an instrument. |
InstrumentApi | get_instrument_legal_entity_background_text_list_by_instrument | GET /instrument/legalEntity/backgroundText/listByInstrument | Role-specific background texts of legal entities related to an instrument. |
InstrumentApi | get_instrument_legal_entity_compliance_property_list_by_instrument | GET /instrument/legalEntity/complianceProperty/listByInstrument | Role-specific compliance properties of legal entities related to an instrument. |
InstrumentApi | get_instrument_mifid_get | GET /instrument/mifid/get | MiFID II data for a financial instrument. |
InstrumentApi | get_instrument_search_basic | GET /instrument/search/basic | Basic search for instruments. |
InstrumentApi | post_instrument_background_text_type_list | POST /instrument/backgroundText/type/list | List of background text types for instruments. |
InstrumentApi | post_instrument_benchmark_list | POST /instrument/benchmark/list | List of benchmarks of a financial instrument. |
InstrumentApi | post_instrument_category_list | POST /instrument/category/list | List of categories assigned to a specific instrument the application is entitled to see. |
InstrumentApi | post_instrument_compliance_property_list | POST /instrument/complianceProperty/list | List of compliance properties for instruments. |
InstrumentApi | post_instrument_cross_reference_list_by_isin | POST /instrument/crossReference/listByISIN | Translate a list of ISINs to instruments. |
InstrumentApi | post_instrument_cross_reference_list_by_wkn | POST /instrument/crossReference/listByWKN | Translate a list of WKNs to instruments. |
InstrumentApi | post_instrument_notation_list | POST /instrument/notation/list | List of active, entitled notations for a set of instruments. |
InstrumentApi | post_instrument_rating_grade_list | POST /instrument/rating/grade/list | List of rating grades for a list of instruments. |
NotationApi | get_notation_cross_reference_fact_set_identifier_get | GET /notation/crossReference/factSetIdentifier/get | Retrieve FactSet identifiers for a given notation. |
NotationApi | get_notation_cross_reference_get_by_fact_set_market_symbol | GET /notation/crossReference/getByFactSetMarketSymbol | Translate a FactSet market symbol to a notation. |
NotationApi | get_notation_get | GET /notation/get | Basic data for a notation. |
NotationApi | get_notation_key_figures_month_1_get | GET /notation/keyFigures/month/1/get | End-of-day (EOD) key figures for the time range of one month. |
NotationApi | get_notation_key_figures_month_1_list | GET /notation/keyFigures/month/1/list | End-of-day (EOD) key figures for the time range of one month, for a list of notations. |
NotationApi | get_notation_key_figures_month_3_get | GET /notation/keyFigures/month/3/get | End-of-day (EOD) key figures for the time range of three months. |
NotationApi | get_notation_key_figures_month_3_list | GET /notation/keyFigures/month/3/list | End-of-day (EOD) key figures for the time range of three months, for a list of notations. |
NotationApi | get_notation_key_figures_month_6_get | GET /notation/keyFigures/month/6/get | End-of-day (EOD) key figures for the time range of six months. |
NotationApi | get_notation_key_figures_month_6_list | GET /notation/keyFigures/month/6/list | End-of-day (EOD) key figures for the time range of six months, for a list of notations. |
NotationApi | get_notation_key_figures_week_1_get | GET /notation/keyFigures/week/1/get | End-of-day (EOD) key figures for the time range of one week. |
NotationApi | get_notation_key_figures_week_1_list | GET /notation/keyFigures/week/1/list | End-of-day (EOD) key figures for the time range of one week, for a list of notations. |
NotationApi | get_notation_key_figures_year_10_get | GET /notation/keyFigures/year/10/get | End-of-day (EOD) key figures for the time range of ten years. |
NotationApi | get_notation_key_figures_year_10_list | GET /notation/keyFigures/year/10/list | End-of-day (EOD) key figures for the time range of ten years, for a list of notations. |
NotationApi | get_notation_key_figures_year_1_get | GET /notation/keyFigures/year/1/get | End-of-day (EOD) key figures for the time range of one year. |
NotationApi | get_notation_key_figures_year_1_list | GET /notation/keyFigures/year/1/list | End-of-day (EOD) key figures for the time range of one year, for a list of notations. |
NotationApi | get_notation_key_figures_year_3_get | GET /notation/keyFigures/year/3/get | End-of-day (EOD) key figures for the time range of three years. |
NotationApi | get_notation_key_figures_year_3_list | GET /notation/keyFigures/year/3/list | End-of-day (EOD) key figures for the time range of three years, for a list of notations. |
NotationApi | get_notation_key_figures_year_5_get | GET /notation/keyFigures/year/5/get | End-of-day (EOD) key figures for the time range of five years. |
NotationApi | get_notation_key_figures_year_5_list | GET /notation/keyFigures/year/5/list | End-of-day (EOD) key figures for the time range of five years, for a list of notations. |
NotationApi | get_notation_key_figures_year_7_get | GET /notation/keyFigures/year/7/get | End-of-day (EOD) key figures for the time range of seven years. |
NotationApi | get_notation_key_figures_year_7_list | GET /notation/keyFigures/year/7/list | End-of-day (EOD) key figures for the time range of seven years, for a list of notations. |
NotationApi | get_notation_key_figures_year_to_date_get | GET /notation/keyFigures/yearToDate/get | End-of-day (EOD) key figures for the time range year-to-date (YTD).. |
NotationApi | get_notation_key_figures_year_to_date_list | GET /notation/keyFigures/yearToDate/list | End-of-day (EOD) key figures for the time range year-to-date (YTD), for a list of notations.. |
NotationApi | get_notation_list | GET /notation/list | Basic data for a list of notations. |
NotationApi | get_notation_search_basic | GET /notation/search/basic | Basic search for notations. |
NotationApi | get_notation_search_by_text_ranked_by_volume | GET /notation/searchByTextRankedByVolume | Basic search for notations. |
NotationApi | get_notation_status_get | GET /notation/status/get | Intraday trading status of a notation. |
NotationApi | post_notation_cross_reference_fact_set_identifier_list_by_fact_set_identifier | POST /notation/crossReference/factSetIdentifier/listByFactSetIdentifier | Retrieve a list of notations for a given FactSet identifier. |
NotationApi | post_notation_cross_reference_fact_set_identifier_list_by_instrument | POST /notation/crossReference/factSetIdentifier/listByInstrument | Retrieve a list of FactSet identifiers for a given instrument. |
NotationApi | post_notation_cross_reference_list_by_instrument | POST /notation/crossReference/listByInstrument | List of entitled notations. |
NotationApi | post_notation_cross_reference_list_by_isin | POST /notation/crossReference/listByISIN | List of entitled notations. |
NotationApi | post_notation_cross_reference_list_by_symbol | POST /notation/crossReference/listBySymbol | List of entitled notations. |
NotationApi | post_notation_market_list | POST /notation/market/list | List of markets with entitled notations. |
NotationApi | post_notation_search_by_text | POST /notation/searchByText | Text-based search for notations. |
PricesApi | get_prices_bid_ask_get | GET /prices/bidAsk/get | Most recent bid and ask prices (best bid / offer) for a notation. |
PricesApi | get_prices_bid_ask_list | GET /prices/bidAsk/list | Most recent bid and ask prices (best bid / offer) for a list of notations. |
PricesApi | get_prices_get | GET /prices/get | Overview of trading on the most recent trading day, including the latest price, for a notation. |
PricesApi | get_prices_list | GET /prices/list | Overview of trading on the most recent trading day, including the latest price, for a list of notations. |
PricesApi | get_prices_orderbook_aggregated_get | GET /prices/orderbook/aggregated/get | Orderbook aggregated by price. |
PricesApi | get_prices_orderbook_full_get | GET /prices/orderbook/full/get | Full orderbook |
PricesApi | get_prices_trading_schedule_event_type_list | GET /prices/tradingSchedule/event/type/list | Trading schedule event types. |
PricesApi | post_prices_trading_schedule_event_list | POST /prices/tradingSchedule/event/list | Sequence of market-related events. |
Documentation For Models
- AttributesMember
- CursorBasedPaginationOutputObject
- CursorBasedPaginationOutputObjectWithoutTotal
- ErrorMetaObject
- ErrorObject
- InlineResponse200
- InlineResponse2001
- InlineResponse20010
- InlineResponse20010Data
- InlineResponse20011
- InlineResponse20011Data
- InlineResponse20012
- InlineResponse20012Data
- InlineResponse20013
- InlineResponse20013Data
- InlineResponse20013Kind
- InlineResponse20014
- InlineResponse20014Data
- InlineResponse20015
- InlineResponse20015Data
- InlineResponse20015DataNestedRegions
- InlineResponse20016
- InlineResponse20016Data
- InlineResponse20017
- InlineResponse20017Data
- InlineResponse20017DataCountries
- InlineResponse20018
- InlineResponse20018Data
- InlineResponse20019
- InlineResponse20019Data
- InlineResponse20019DataSubdivisions
- InlineResponse2001Data
- InlineResponse2002
- InlineResponse20020
- InlineResponse20020Data
- InlineResponse20020DataSubdivisions
- InlineResponse20021
- InlineResponse20021Data
- InlineResponse20022
- InlineResponse20022Data
- InlineResponse20023
- InlineResponse20023Data
- InlineResponse20024
- InlineResponse20024Data
- InlineResponse20025
- InlineResponse20025Data
- InlineResponse20026
- InlineResponse20026Data
- InlineResponse20027
- InlineResponse20027Data
- InlineResponse20028
- InlineResponse20028Data
- InlineResponse20028DataMainCurrency
- InlineResponse20029
- InlineResponse20029Data
- InlineResponse20029MainCurrency
- InlineResponse2002Data
- InlineResponse2003
- InlineResponse20030
- InlineResponse20030Data
- InlineResponse20031
- InlineResponse20031Data
- InlineResponse20031DataLevel
- InlineResponse20031DataParent
- InlineResponse20031DataParentLevel
- InlineResponse20031DataSystem
- InlineResponse20032
- InlineResponse20032Data
- InlineResponse20032DataCategories
- InlineResponse20033
- InlineResponse20033Data
- InlineResponse20033DataCategories
- InlineResponse20033DataParent
- InlineResponse20033DataParent1
- InlineResponse20033Meta
- InlineResponse20034
- InlineResponse20034Data
- InlineResponse20034DataCategories
- InlineResponse20034DataLevel
- InlineResponse20034DataParent
- InlineResponse20035
- InlineResponse20035Data
- InlineResponse20035Delivery
- InlineResponse20035System
- InlineResponse20036
- InlineResponse20036Data
- InlineResponse20036Fsym
- InlineResponse20036FsymSecurity
- InlineResponse20036Meta
- InlineResponse20037
- InlineResponse20037Data
- InlineResponse20037DataSystem
- InlineResponse20038
- InlineResponse20038Data
- InlineResponse20038DataCategories
- InlineResponse20039
- InlineResponse20039Data
- InlineResponse20039DataLevels
- InlineResponse20039DataType
- InlineResponse2003Data
- InlineResponse2004
- InlineResponse20040
- InlineResponse20040Data
- InlineResponse20041
- InlineResponse20041Data
- InlineResponse20042
- InlineResponse20042Data
- InlineResponse20042DataAssetClass
- InlineResponse20042DataNsin
- InlineResponse20042DataType
- InlineResponse20043
- InlineResponse20043Data
- InlineResponse20044
- InlineResponse20044Data
- InlineResponse20044Type
- InlineResponse20045
- InlineResponse20045Data
- InlineResponse20046
- InlineResponse20046Data
- InlineResponse20046Notation
- InlineResponse20046NotationFsym
- InlineResponse20046NotationFsymListing
- InlineResponse20046NotationFsymRegional
- InlineResponse20046NotationInstrument
- InlineResponse20046Type
- InlineResponse20047
- InlineResponse20047Data
- InlineResponse20047Dataset
- InlineResponse20048
- InlineResponse20048Data
- InlineResponse20049
- InlineResponse2004Data
- InlineResponse2005
- InlineResponse20050
- InlineResponse20050Data
- InlineResponse20050DataComponents
- InlineResponse20050DataNotation
- InlineResponse20050DataNotationInstrument
- InlineResponse20050DataNotationOperatingMIC
- InlineResponse20050DataValueUnit
- InlineResponse20051
- InlineResponse20051Data
- InlineResponse20051DataCoupons
- InlineResponse20051DataCurrency
- InlineResponse20051DataInterestRate
- InlineResponse20051DataInterestRateAnnualized
- InlineResponse20051DataInterestRatePeriodic
- InlineResponse20051DataInterestRateType
- InlineResponse20051DataPeriod
- InlineResponse20052
- InlineResponse20052Data
- InlineResponse20053
- InlineResponse20054
- InlineResponse20054Data
- InlineResponse20054DataDayCountConvention
- InlineResponse20054DataInterestRate
- InlineResponse20054DataInterestRateCurrent
- InlineResponse20054DataInterestRateCurrentAccruedInterest
- InlineResponse20054DataInterestRateCurrentType
- InlineResponse20054DataInterestRateFinal
- InlineResponse20054DataInterestRateInitial
- InlineResponse20054DataOccurrence
- InlineResponse20054DataOccurrenceFrequency
- InlineResponse20055
- InlineResponse20055Data
- InlineResponse20055DataValidity
- InlineResponse20056
- InlineResponse20056Data
- InlineResponse20056Status
- InlineResponse20057
- InlineResponse20057Data
- InlineResponse20057Status
- InlineResponse20058
- InlineResponse20058Data
- InlineResponse20059
- InlineResponse20059Data
- InlineResponse20059DataInstrument
- InlineResponse2005Data
- InlineResponse2006
- InlineResponse20060
- InlineResponse20060Data
- InlineResponse20060LegalEntities
- InlineResponse20060LegalEntitiesBackgroundTexts
- InlineResponse20060LegalEntitiesBackgroundTextsType
- InlineResponse20061
- InlineResponse20061Data
- InlineResponse20061LegalEntities
- InlineResponse20062
- InlineResponse20062Data
- InlineResponse20062DataCostsAndCharges
- InlineResponse20062DataCostsAndChargesExAnte
- InlineResponse20062DataCostsAndChargesExAnteDistributionFee
- InlineResponse20062DataCostsAndChargesExAnteIncidentalCosts
- InlineResponse20062DataCostsAndChargesExAnteItaly
- InlineResponse20062DataCostsAndChargesExAnteItalyOneOffMaximumFixedEntryCost
- InlineResponse20062DataCostsAndChargesExAnteItalyOneOffMaximumFixedExitCost
- InlineResponse20062DataCostsAndChargesExAnteManagementFee
- InlineResponse20062DataCostsAndChargesExAnteOneOffEntryCost
- InlineResponse20062DataCostsAndChargesExAnteOneOffEntryCostValueUnit
- InlineResponse20062DataCostsAndChargesExAnteOneOffMaximumAcquiredEntryCost
- InlineResponse20062DataCostsAndChargesExAnteOneOffMaximumAcquiredExitCost
- InlineResponse20062DataCostsAndChargesExAnteOneOffMaximumExitCost
- InlineResponse20062DataCostsAndChargesExAnteOneOffPriorRHPExitCost
- InlineResponse20062DataCostsAndChargesExAnteOneOffTypicalExitCost
- InlineResponse20062DataCostsAndChargesExAnteOngoingCosts
- InlineResponse20062DataCostsAndChargesExAnteTransactionCosts
- InlineResponse20062DataCostsAndChargesExPost
- InlineResponse20062DataCostsAndChargesExPostDistributionFee
- InlineResponse20062DataCostsAndChargesExPostIncidentalCosts
- InlineResponse20062DataCostsAndChargesExPostManagementFee
- InlineResponse20062DataCostsAndChargesExPostOneOffEntryCost
- InlineResponse20062DataCostsAndChargesExPostOneOffExitCost
- InlineResponse20062DataCostsAndChargesExPostOngoingCostAccumulated
- InlineResponse20062DataCostsAndChargesExPostOngoingCosts
- InlineResponse20062DataCostsAndChargesExPostTransactionCosts
- InlineResponse20062DataDistributionChannel
- InlineResponse20062DataGeneral
- InlineResponse20062DataGeneralCurrency
- InlineResponse20062DataGeneralFund
- InlineResponse20062DataGeneralFundDomicile
- InlineResponse20062DataGeneralGuarantor
- InlineResponse20062DataGeneralIssuer
- InlineResponse20062DataGeneralLegalStructure
- InlineResponse20062DataGeneralManufacturer
- InlineResponse20062DataGeneralType
- InlineResponse20062DataTargetMarket
- InlineResponse20062DataTargetMarketAbilityToBearLosses
- InlineResponse20062DataTargetMarketClientObjectivesAndNeeds
- InlineResponse20062DataTargetMarketClientObjectivesAndNeedsReturnProfile
- InlineResponse20062DataTargetMarketClientObjectivesAndNeedsReturnProfileGermany
- InlineResponse20062DataTargetMarketInvestorType
- InlineResponse20062DataTargetMarketKnowledgeAndExperience
- InlineResponse20062DataTargetMarketKnowledgeAndExperienceGermany
- InlineResponse20062DataTargetMarketRecommendedHoldingPeriod
- InlineResponse20062DataTargetMarketRiskTolerance
- InlineResponse20062DataTargetMarketRiskToleranceGermany
- InlineResponse20062DataTargetMarketRiskToleranceInternalRiskRating
- InlineResponse20062DataTargetMarketRiskToleranceSpain
- InlineResponse20062DataTargetMarketRiskToleranceSri
- InlineResponse20062DataTargetMarketRiskToleranceSrri
- InlineResponse20063
- InlineResponse20063Data
- InlineResponse20063Market
- InlineResponse20063Notations
- InlineResponse20063Status
- InlineResponse20063TradingVolume
- InlineResponse20063TradingVolumeMonth1
- InlineResponse20063ValueUnit
- InlineResponse20064
- InlineResponse20064Current
- InlineResponse20064Data
- InlineResponse20064Previous
- InlineResponse20064Ratings
- InlineResponse20064System
- InlineResponse20065
- InlineResponse20065Data
- InlineResponse20065DataInstrument
- InlineResponse20065DataMarket
- InlineResponse20065DataValueUnit
- InlineResponse20066
- InlineResponse20066Data
- InlineResponse20066Status
- InlineResponse20067
- InlineResponse20067Data
- InlineResponse20067DataInstrument
- InlineResponse20067DataMarket
- InlineResponse20067DataValueUnit
- InlineResponse20068
- InlineResponse20068Data
- InlineResponse20068DataNotations
- InlineResponse20069
- InlineResponse2006Data
- InlineResponse2007
- InlineResponse20070
- InlineResponse20070Data
- InlineResponse20070Instrument
- InlineResponse20071
- InlineResponse20071Data
- InlineResponse20071DataInstrument
- InlineResponse20071DataRegional
- InlineResponse20071DataRegionalListing
- InlineResponse20072
- InlineResponse20072Data
- InlineResponse20072DataInstrument
- InlineResponse20072DataListing
- InlineResponse20072DataNotation
- InlineResponse20072DataRegional
- InlineResponse20073
- InlineResponse20073Data
- InlineResponse20074
- InlineResponse20074Data
- InlineResponse20074DataHigh
- InlineResponse20074DataLow
- InlineResponse20074DataPerformance
- InlineResponse20075
- InlineResponse20075Data
- InlineResponse20075Status
- InlineResponse20076
- InlineResponse20076Data
- InlineResponse20076DataTradingVolume
- InlineResponse20077
- InlineResponse20077Data
- InlineResponse20078
- InlineResponse20078Data
- InlineResponse20079
- InlineResponse20079Data
- InlineResponse2007Data
- InlineResponse2008
- InlineResponse20080
- InlineResponse20080Country
- InlineResponse20080Data
- InlineResponse20080Group
- InlineResponse20080Timezone
- InlineResponse20080Type
- InlineResponse20081
- InlineResponse20081Data
- InlineResponse20081DataMarket
- InlineResponse20082
- InlineResponse20082Data
- InlineResponse20082DataAccumulated
- InlineResponse20082DataCurrency
- InlineResponse20082DataFirst
- InlineResponse20082DataHigh
- InlineResponse20082DataLatest
- InlineResponse20082DataLatestPerformance
- InlineResponse20082DataLatestPerformanceIntraday
- InlineResponse20082DataLow
- InlineResponse20082DataMarket
- InlineResponse20082DataPreviousClose
- InlineResponse20082DataValueUnit
- InlineResponse20083
- InlineResponse20083Accumulated
- InlineResponse20083Data
- InlineResponse20083First
- InlineResponse20083High
- InlineResponse20083Latest
- InlineResponse20083LatestPerformance
- InlineResponse20083LatestPerformanceIntraday
- InlineResponse20083Low
- InlineResponse20083Market
- InlineResponse20083PreviousClose
- InlineResponse20083Status
- InlineResponse20084
- InlineResponse20084Data
- InlineResponse20084DataAsk
- InlineResponse20084DataBid
- InlineResponse20085
- InlineResponse20085Ask
- InlineResponse20085Bid
- InlineResponse20085Data
- InlineResponse20086
- InlineResponse20086Data
- InlineResponse20086DataAsks
- InlineResponse20087
- InlineResponse20087Data
- InlineResponse20087DataAsks
- InlineResponse20088
- InlineResponse20088Data
- InlineResponse20088DataEvents
- InlineResponse20088DataRange
- InlineResponse20088DataType
- InlineResponse20088Meta
- InlineResponse20089
- InlineResponse20089Data
- InlineResponse2008Data
- InlineResponse2008DataCountry
- InlineResponse2008DataGroup
- InlineResponse2008DataTimezone
- InlineResponse2008DataType
- InlineResponse2009
- InlineResponse20090
- InlineResponse20090Data
- InlineResponse20091
- InlineResponse20091Data
- InlineResponse20091Instrument
- InlineResponse20091InstrumentNsin
- InlineResponse20091Nsin
- InlineResponse20091Price
- InlineResponse20092
- InlineResponse20092Data
- InlineResponse20092Instrument
- InlineResponse20092InstrumentAssetClass
- InlineResponse20092InstrumentName
- InlineResponse20092InstrumentNameDefault
- InlineResponse20092TradingValue
- InlineResponse20092TradingValueAverage
- InlineResponse20092ValueUnit
- InlineResponse20093
- InlineResponse20093Data
- InlineResponse20093Instrument
- InlineResponse2009Country
- InlineResponse2009Data
- InlineResponse2009Group
- InlineResponse2009Meta
- InlineResponse2009Type
- InlineResponse200Data
- InlineResponse200Meta
- LanguageMember
- OffsetBasedPaginationOutputObject
- OffsetBasedPaginationOutputObjectWithoutTotal
- PartialOutputObject
- PostBasicBackgroundTextTypeListRequest
- PostBasicBackgroundTextTypeListRequestData
- PostBasicBackgroundTextTypeListRequestDataFilter
- PostBasicBackgroundTextTypeListRequestMeta
- PostBasicDeliveryListRequest
- PostBasicDeliveryListRequestData
- PostBasicDeliveryListRequestDataFilter
- PostBasicDeliveryListRequestMeta
- PostBasicMarketListRequest
- PostBasicMarketListRequestData
- PostBasicMarketListRequestDataFilter
- PostBasicMarketListRequestDataFilterMarkets
- PostBasicMarketListRequestMeta
- PostBasicMarketListRequestMetaPagination
- PostBasicMediaTypeListRequest
- PostBasicMediaTypeListRequestData
- PostBasicMediaTypeListRequestDataFilter
- PostBasicMediaTypeListRequestMeta
- PostBasicMicOperatingListRequest
- PostBasicMicOperatingListRequestData
- PostBasicMicOperatingListRequestDataFilter
- PostBasicMicOperatingListRequestMeta
- PostBasicTimezoneListRequest
- PostBasicTimezoneListRequestData
- PostBasicTimezoneListRequestDataFilter
- PostBasicValueUnitCurrencyListRequest
- PostBasicValueUnitCurrencyMainListRequest
- PostBasicValueUnitCurrencyMainListRequestData
- PostBasicValueUnitCurrencyMainListRequestDataFilter
- PostBasicValueUnitListRequest
- PostBasicValueUnitListRequestData
- PostBasicValueUnitListRequestDataFilter
- PostBasicValueUnitListRequestMeta
- PostInstrumentBackgroundTextTypeListRequest
- PostInstrumentBackgroundTextTypeListRequestData
- PostInstrumentBackgroundTextTypeListRequestDataFilter
- PostInstrumentBackgroundTextTypeListRequestMeta
- PostInstrumentBenchmarkListRequest
- PostInstrumentBenchmarkListRequestData
- PostInstrumentBenchmarkListRequestDataFilter
- PostInstrumentCategoryListRequest
- PostInstrumentCategoryListRequestData
- PostInstrumentCategoryListRequestDataFilter
- PostInstrumentCategoryListRequestDataFilterDataset
- PostInstrumentCategoryListRequestMeta
- PostInstrumentCompliancePropertyListRequest
- PostInstrumentCompliancePropertyListRequestData
- PostInstrumentCompliancePropertyListRequestDataFilter
- PostInstrumentCrossReferenceListByISINRequest
- PostInstrumentCrossReferenceListByISINRequestData
- PostInstrumentCrossReferenceListByWKNRequest
- PostInstrumentCrossReferenceListByWKNRequestData
- PostInstrumentNotationListRequest
- PostInstrumentNotationListRequestData
- PostInstrumentNotationListRequestDataFilter
- PostInstrumentNotationListRequestDataFilterMarket
- PostInstrumentNotationListRequestDataFilterMarketOrder
- PostInstrumentNotationListRequestDataFilterMarketSelection
- PostInstrumentNotationListRequestDataFilterMarketSelectionExclude
- PostInstrumentNotationListRequestDataFilterMarketSelectionRestrict
- PostInstrumentNotationListRequestDataFilterValueUnit
- PostInstrumentNotationListRequestDataFilterValueUnitOrder
- PostInstrumentNotationListRequestDataFilterValueUnitSelection
- PostInstrumentNotationListRequestDataFilterValueUnitSelectionExclude
- PostInstrumentNotationListRequestDataFilterValueUnitSelectionRestrict
- PostInstrumentNotationListRequestDataIdentifier
- PostInstrumentNotationListRequestMeta
- PostInstrumentRatingGradeListRequest
- PostInstrumentRatingGradeListRequestData
- PostInstrumentRatingGradeListRequestDataFilter
- PostInstrumentRatingGradeListRequestDataFilterRatingSystem
- PostNotationCrossReferenceFactSetIdentifierListByFactSetIdentifierRequest
- PostNotationCrossReferenceFactSetIdentifierListByFactSetIdentifierRequestData
- PostNotationCrossReferenceFactSetIdentifierListByInstrumentRequest
- PostNotationCrossReferenceFactSetIdentifierListByInstrumentRequestData
- PostNotationCrossReferenceListByISINRequest
- PostNotationCrossReferenceListByISINRequestData
- PostNotationCrossReferenceListByInstrumentRequest
- PostNotationCrossReferenceListByInstrumentRequestData
- PostNotationCrossReferenceListByInstrumentRequestDataFilter
- PostNotationCrossReferenceListByInstrumentRequestDataFilterMarkets
- PostNotationCrossReferenceListByInstrumentRequestDataFilterValueUnits
- PostNotationCrossReferenceListByInstrumentRequestDataIdentifier
- PostNotationCrossReferenceListBySymbolRequest
- PostNotationCrossReferenceListBySymbolRequestData
- PostNotationMarketListRequest
- PostNotationMarketListRequestData
- PostNotationMarketListRequestDataFilter
- PostNotationMarketListRequestDataFilterAssetClass
- PostNotationMarketListRequestDataFilterCountry
- PostNotationMarketListRequestDataFilterGroup
- PostNotationMarketListRequestDataFilterType
- PostNotationMarketListRequestMeta
- PostNotationSearchByTextRequest
- PostNotationSearchByTextRequestData
- PostNotationSearchByTextRequestDataAssetClasses
- PostNotationSearchByTextRequestDataMarket
- PostNotationSearchByTextRequestDataMarketOrder
- PostNotationSearchByTextRequestDataText
- PostNotationSearchByTextRequestDataTradingValue
- PostNotationSearchByTextRequestDataTradingValueAverage
- PostNotationSearchByTextRequestDataTradingValueAverageDays30
- PostNotationSearchByTextRequestDataTradingValueAverageDays30Maximum
- PostNotationSearchByTextRequestDataTradingValueAverageDays30Minimum
- PostNotationSearchByTextRequestDataValidation
- PostNotationSearchByTextRequestDataValidationMarket
- PostNotationSearchByTextRequestDataValidationMarketPriority
- PostNotationSearchByTextRequestDataValidationMarketSelection
- PostNotationSearchByTextRequestDataValidationPrices
- PostNotationSearchByTextRequestDataValidationPricesLatest
- PostNotationSearchByTextRequestDataValidationPricesPrevious
- PostNotationSearchByTextRequestDataValidationValueUnit
- PostNotationSearchByTextRequestDataValidationValueUnitSelection
- PostNotationSearchByTextRequestMeta
- PostPricesTradingScheduleEventListRequest
- PostPricesTradingScheduleEventListRequestData
- PostPricesTradingScheduleEventListRequestDataFilter
- PostPricesTradingScheduleEventListRequestDataFilterRange
- PostPricesTradingScheduleEventListRequestDataIdentifier
- PostPricesTradingScheduleEventListRequestMeta
- PostPricesTradingScheduleEventListRequestMetaPagination
- StatusObject
Documentation For Authorization
FactSetApiKey
- Type: HTTP basic authentication
FactSetOAuth2
- Type: OAuth
- Flow: application
- Authorization URL:
- Scopes: N/A
Notes for Large OpenAPI documents
If the OpenAPI document is large, imports in fds.sdk.QuotesAPIforDigitalPortals.apis and fds.sdk.QuotesAPIforDigitalPortals.models may fail with a RecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:
Solution 1: Use specific imports for apis and models like:
from fds.sdk.QuotesAPIforDigitalPortals.api.default_api import DefaultApi
from fds.sdk.QuotesAPIforDigitalPortals.model.pet import Pet
Solution 2: Before importing the package, adjust the maximum recursion limit as shown below:
import sys
sys.setrecursionlimit(1500)
import fds.sdk.QuotesAPIforDigitalPortals
from fds.sdk.QuotesAPIforDigitalPortals.apis import *
from fds.sdk.QuotesAPIforDigitalPortals.models import *
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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Hashes for fds.sdk.QuotesAPIforDigitalPortals-0.10.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c166ffe070ff1fd60bf3d36949ad536a17005cde33bbabcc74862c6c358fe78 |
|
MD5 | 34c14310e1d11aaf2e0e93749775954e |
|
BLAKE2b-256 | 228e949ba0573b5453205ecb28887c551a2016c0cd3216b1f692fe2de4d874cb |