ICE Consolidated Feed API — Market Data

ICE Consolidated Feed API — Market Data. 2 operations. Lead operation: Get market data history. Self-contained Naftiko capability covering one Intercontinental Exchange business surface.

Run with Naftiko Intercontinental ExchangeMarket Data

What You Can Do

GET
Getmarkethistory — Get market data history
/v1/marketdata/history
GET
Getquotes — Get market quotes
/v1/marketdata/quotes

MCP Tools

get-market-data-history

Get market data history

read-only idempotent
get-market-quotes

Get market quotes

read-only idempotent

Capability Spec

ice-consolidated-feed-market-data.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: ICE Consolidated Feed API — Market Data
  description: 'ICE Consolidated Feed API — Market Data. 2 operations. Lead operation: Get market data history. Self-contained
    Naftiko capability covering one Intercontinental Exchange business surface.'
  tags:
  - Intercontinental Exchange
  - Market Data
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    INTERCONTINENTAL_EXCHANGE_API_KEY: INTERCONTINENTAL_EXCHANGE_API_KEY
capability:
  consumes:
  - type: http
    namespace: ice-consolidated-feed-market-data
    baseUri: https://api.theice.com
    description: ICE Consolidated Feed API — Market Data business capability. Self-contained, no shared references.
    resources:
    - name: marketdata-history
      path: /marketdata/history
      operations:
      - name: getmarkethistory
        method: GET
        description: Get market data history
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: instrumentId
          in: query
          type: string
          description: The instrument identifier.
          required: true
        - name: startDate
          in: query
          type: string
          description: Start date for historical data.
        - name: endDate
          in: query
          type: string
          description: End date for historical data.
    - name: marketdata-quotes
      path: /marketdata/quotes
      operations:
      - name: getquotes
        method: GET
        description: Get market quotes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: instrumentId
          in: query
          type: string
          description: The instrument identifier.
          required: true
    authentication:
      type: bearer
      token: '{{env.INTERCONTINENTAL_EXCHANGE_API_KEY}}'
  exposes:
  - type: rest
    namespace: ice-consolidated-feed-market-data-rest
    port: 8080
    description: REST adapter for ICE Consolidated Feed API — Market Data. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/marketdata/history
      name: marketdata-history
      description: REST surface for marketdata-history.
      operations:
      - method: GET
        name: getmarkethistory
        description: Get market data history
        call: ice-consolidated-feed-market-data.getmarkethistory
        with:
          instrumentId: rest.instrumentId
          startDate: rest.startDate
          endDate: rest.endDate
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/marketdata/quotes
      name: marketdata-quotes
      description: REST surface for marketdata-quotes.
      operations:
      - method: GET
        name: getquotes
        description: Get market quotes
        call: ice-consolidated-feed-market-data.getquotes
        with:
          instrumentId: rest.instrumentId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: ice-consolidated-feed-market-data-mcp
    port: 9090
    transport: http
    description: MCP adapter for ICE Consolidated Feed API — Market Data. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-market-data-history
      description: Get market data history
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ice-consolidated-feed-market-data.getmarkethistory
      with:
        instrumentId: tools.instrumentId
        startDate: tools.startDate
        endDate: tools.endDate
      outputParameters:
      - type: object
        mapping: $.
    - name: get-market-quotes
      description: Get market quotes
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ice-consolidated-feed-market-data.getquotes
      with:
        instrumentId: tools.instrumentId
      outputParameters:
      - type: object
        mapping: $.