ICE Consolidated Feed API

The ICE Consolidated Feed API provides developers with access to ICE Data Services real-time and delayed market data. The API delivers consolidated market data feeds from exchanges operated by Intercontinental Exchange including ICE Futures, NYSE, and other trading venues. The Developer Center provides detailed API documentation, samples, and SDK downloads.

Documentation

Specifications

Other Resources

OpenAPI Specification

intercontinental-exchange-instruments-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: ICE Consolidated Feed Instruments API
  description: The ICE Consolidated Feed API provides access to ICE Data Services real-time and delayed market data from exchanges operated by Intercontinental Exchange including ICE Futures, NYSE, and other trading venues.
  version: '1.0'
servers:
- url: https://api.theice.com
tags:
- name: Instruments
  description: Retrieve instrument and contract information.
paths:
  /marketdata/instruments:
    get:
      operationId: listInstruments
      summary: List instruments
      description: Retrieves a list of available instruments and contracts across ICE exchanges with filtering by exchange, product type, and status.
      tags:
      - Instruments
      parameters:
      - name: exchange
        in: query
        description: Filter by exchange code.
        schema:
          type: string
      - name: productType
        in: query
        description: Filter by product type (futures, options, etc.).
        schema:
          type: string
      responses:
        '200':
          description: Success
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization
    bearerAuth:
      type: http
      scheme: bearer