openapi: 3.0.0 info: version: 1.0.0 title: Factset Exchange DataFeed Data Model API description: >- FactSet’s Exchange DataFeed products provide access to consolidated real-time and delayed global exchange data. Proprietary technology normalizes over 250 global venues, 18+ million instruments, and 150+ data fields. Asset types integrated include equities, futures, options, warrants, fixed income, mutual funds, ETFs, indices, commodities, and FX rates. Innovative technology ensures reliability and provides scalability that allows clients to make requests based on a symbol list or an exchange. Reduce development time by powering proprietary and third-party applications with exchange data from a unified data model.
The Exchange DataFeed Data Model API provides mappings for enumerations used in our Real-Time DataFeed products and should be used in conjunction with the DataFeed Data Model documentation available for each product.
The initial beta version of
this API is limited to include mapping tables for the product codes only.
servers:
- url: https://api.factset.com/RTDataModel
security:
- BasicAuth: []
paths:
/products:
get:
summary: Request the enumeration table for FactSet product codes.
operationId: get_products
tags:
- Products
description: >
Data can be returned in CSV, JSON or XML format, use the `format`
parameter to chnage from the default JSON format.
parameters:
- $ref: '#/components/parameters/format'
responses:
'200':
description: Successful response for the FactSet product codes table
content:
application/json:
schema:
$ref: '#/components/schemas/RTDataModel_Products'
example:
- product_code: 9001
description: New York Stock Exchange Level 1
- product_code: 9002
description: Nasdaq Stock Market Level 1
- product_code: 9003
description: Nasdaq Stock Market Level 2
- product_code: 9004
description: NYSE American Level 1
- product_code: 9005
description: US Options Composite Pricing Level 1
application/xml:
schema:
$ref: '#/components/schemas/RTDataModel_Products'
example: >-
**Try it Out** - All formats available
in: query schema: type: string default: json enum: - xml - json - csv schemas: RTDataModel_Products: type: object title: Product codes description: sample response properties: product_code: example: 9001 type: integer description: FactSet product code description: example: New York Stock Exchange Level 1 type: string description: Product description errorResponse: type: object title: Error Response properties: status: description: status type: integer example: 401 error: description: The plain text error message type: string example: Unauthorized tags: - name: Products