Factset · Capability

FactSet StreetAccount News API — Files

FactSet StreetAccount News API — Files. 2 operations. Lead operation: Factset Returns the Streetaccount Xml Files for the Specified Date Range. Self-contained Naftiko capability covering one Factset business surface.

Run with Naftiko FactsetFiles

What You Can Do

GET
Get — Factset Returns the Streetaccount Xml Files for the Specified Date Range
/v1/streetaccount/historical/get-files
GET
Get — Factset Returns the Jobid
/v1/streetaccount/historical/request-files

MCP Tools

factset-returns-streetaccount-xml-files

Factset Returns the Streetaccount Xml Files for the Specified Date Range

read-only idempotent
factset-returns-jobid

Factset Returns the Jobid

read-only idempotent

Capability Spec

streetaccount-news-files.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: FactSet StreetAccount News API — Files
  description: 'FactSet StreetAccount News API — Files. 2 operations. Lead operation: Factset Returns the Streetaccount Xml
    Files for the Specified Date Range. Self-contained Naftiko capability covering one Factset business surface.'
  tags:
  - Factset
  - Files
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FACTSET_API_KEY: FACTSET_API_KEY
capability:
  consumes:
  - type: http
    namespace: streetaccount-news-files
    baseUri: https://api.factset.com/research/news/v0
    description: FactSet StreetAccount News API — Files business capability. Self-contained, no shared references.
    resources:
    - name: streetaccount-historical-get-files
      path: /streetaccount/historical/get-files
      operations:
      - name: get
        method: GET
        description: Factset Returns the Streetaccount Xml Files for the Specified Date Range
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: jobID
          in: query
          type: string
          description: jobID returned by the request-files endpoint to collect the results of the query
          required: true
        - name: _paginationLimit
          in: query
          type: integer
          description: Specifies the maximum number of results to return per result
        - name: _paginationOffset
          in: query
          type: integer
          description: Specifies the starting point for pagination. This parameter is used to identify the   beginning of
            next set of results
    - name: streetaccount-historical-request-files
      path: /streetaccount/historical/request-files
      operations:
      - name: get
        method: GET
        description: Factset Returns the Jobid
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: startDate
          in: query
          type: string
          description: Date from which data is required. Should be YYYY-MM-DDTHH:MM:SSZ format
          required: true
        - name: endDate
          in: query
          type: string
          description: The date until which the data is to be fetched. Should be YYYY-MM-DDTHH:MM:SSZ format
          required: true
    authentication:
      type: bearer
      token: '{{env.FACTSET_API_KEY}}'
  exposes:
  - type: rest
    namespace: streetaccount-news-files-rest
    port: 8080
    description: REST adapter for FactSet StreetAccount News API — Files. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/streetaccount/historical/get-files
      name: streetaccount-historical-get-files
      description: REST surface for streetaccount-historical-get-files.
      operations:
      - method: GET
        name: get
        description: Factset Returns the Streetaccount Xml Files for the Specified Date Range
        call: streetaccount-news-files.get
        with:
          jobID: rest.jobID
          _paginationLimit: rest._paginationLimit
          _paginationOffset: rest._paginationOffset
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/streetaccount/historical/request-files
      name: streetaccount-historical-request-files
      description: REST surface for streetaccount-historical-request-files.
      operations:
      - method: GET
        name: get
        description: Factset Returns the Jobid
        call: streetaccount-news-files.get
        with:
          startDate: rest.startDate
          endDate: rest.endDate
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: streetaccount-news-files-mcp
    port: 9090
    transport: http
    description: MCP adapter for FactSet StreetAccount News API — Files. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: factset-returns-streetaccount-xml-files
      description: Factset Returns the Streetaccount Xml Files for the Specified Date Range
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: streetaccount-news-files.get
      with:
        jobID: tools.jobID
        _paginationLimit: tools._paginationLimit
        _paginationOffset: tools._paginationOffset
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-returns-jobid
      description: Factset Returns the Jobid
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: streetaccount-news-files.get
      with:
        startDate: tools.startDate
        endDate: tools.endDate
      outputParameters:
      - type: object
        mapping: $.