Barfinex
All exchanges
ICE

ICE

Coming SoonFutures & Derivatives
connectorType: "ice"

Intercontinental Exchange — energy, commodities, financials

Connection Architecture

ICE
WebSocket / REST
Connector
libs/exchange-ice
Provider
:8081/api
Detector
Advisor
Studio

The connector receives data from the exchange and feeds it to Provider (port 8081). From there — to Detector, Advisor, and Studio.

Technologies

Transport
WebSocketREST
Authentication
API Key + Secret
Data Format
JSON

Best for

  • Energy traders tracking Brent crude as the global oil benchmark alongside WTI spread analysis.
  • Agricultural commodity desks monitoring soft commodities (sugar, coffee, cotton, cocoa) for macro correlations.
  • Carbon market participants tracking EU ETS and CCA emissions allowances futures.

Connect via code

1Environment variables (.env)

ICE_API_KEY=your_key_here
ICE_API_SECRET=your_secret_here

2Connector configuration

// config/config.provider.json
{
  "provider": {
    "connectors": [
      {
        "connectorType": "ice",
        "enabled": true,
        "key": "${ICE_API_KEY}",
        "secret": "${ICE_API_SECRET}",
        "markets": [
          { "marketType": "spot", "symbols": [{ "name": "BTCUSDT" }] }
        ],
        "subscriptions": [
          { "type": "PROVIDER_MARKETDATA_CANDLE", "symbols": ["BTCUSDT"], "intervals": ["min1", "h1"], "active": true },
          { "type": "PROVIDER_MARKETDATA_TRADE", "symbols": ["BTCUSDT"], "active": true },
          { "type": "PROVIDER_MARKETDATA_ORDERBOOK", "symbols": ["BTCUSDT"], "active": true }
        ]
      }
    ]
  }
}

3Verify and query data

# Verify connection
curl -H "Authorization: Bearer $PROVIDER_API_TOKEN" \
  https://localhost:8081/api/exchanges/runtime-proof

# Candles (last 7 days)
curl -H "Authorization: Bearer $PROVIDER_API_TOKEN" \
  "https://localhost:8081/api/candles/ice/spot/BTCUSDT/h1?days=7"

Available via Barfinex API

/api/candles/ice/...
/api/trades/ice/...
/api/orderbook/ice/...
/api/account/ice/...
/api/symbols/ice/...
/api/assets/ice/...

Studio graphical setup — in development, coming in the next release.

Important

ICE market data access requires an exchange agreement and varies by product (energy vs.
agriculture vs.
financial).
Real-time data is exchange-licensed; delayed snapshots may be available at lower cost.
Supported Markets
Futures
Connect in Studio(soon)
Exchange Website

Let’s Get in Touch

Have questions or want to explore Barfinex? Send us a message.