Factset · Capability

FactSet Formula API — Batch Result

FactSet Formula API — Batch Result. 2 operations. Lead operation: Factset Returns the response for a Batch Request. Self-contained Naftiko capability covering one Factset business surface.

Run with Naftiko FactsetBatch Result

What You Can Do

GET
Getbatchdata — Factset Returns the response for a Batch Request
/v1/v1/batch-result
POST
Getbatchdatawithpost — Factset Returns the status for a Batch Request
/v1/v1/batch-result

MCP Tools

factset-returns-response-batch-request

Factset Returns the response for a Batch Request

read-only idempotent
factset-returns-status-batch-request

Factset Returns the status for a Batch Request

Capability Spec

formula-batch-result.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: FactSet Formula API — Batch Result
  description: 'FactSet Formula API — Batch Result. 2 operations. Lead operation: Factset Returns the response for a Batch
    Request. Self-contained Naftiko capability covering one Factset business surface.'
  tags:
  - Factset
  - Batch Result
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FACTSET_API_KEY: FACTSET_API_KEY
capability:
  consumes:
  - type: http
    namespace: formula-batch-result
    baseUri: https://api.factset.com/formula-api
    description: FactSet Formula API — Batch Result business capability. Self-contained, no shared references.
    resources:
    - name: v1-batch-result
      path: /v1/batch-result
      operations:
      - name: getbatchdata
        method: GET
        description: Factset Returns the response for a Batch Request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: getbatchdatawithpost
        method: POST
        description: Factset Returns the status for a Batch Request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: basic
      username: '{{env.FACTSET_USER}}'
      password: '{{env.FACTSET_PASS}}'
  exposes:
  - type: rest
    namespace: formula-batch-result-rest
    port: 8080
    description: REST adapter for FactSet Formula API — Batch Result. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/batch-result
      name: v1-batch-result
      description: REST surface for v1-batch-result.
      operations:
      - method: GET
        name: getbatchdata
        description: Factset Returns the response for a Batch Request
        call: formula-batch-result.getbatchdata
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: getbatchdatawithpost
        description: Factset Returns the status for a Batch Request
        call: formula-batch-result.getbatchdatawithpost
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: formula-batch-result-mcp
    port: 9090
    transport: http
    description: MCP adapter for FactSet Formula API — Batch Result. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: factset-returns-response-batch-request
      description: Factset Returns the response for a Batch Request
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: formula-batch-result.getbatchdata
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-returns-status-batch-request
      description: Factset Returns the status for a Batch Request
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: formula-batch-result.getbatchdatawithpost
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.