LogoLogo
  • Kaiko Knowledge Hub
  • General
    • 👋Introduction
    • 🏎️Getting Started
      • API input
      • API output
        • "taker_side_sell" Explained
        • Market open and close
        • Timestamp
      • Authentication
      • Data versioning
      • Envelope
      • Error codes
      • Pagination
      • Rate limiting
  • Data Feeds
    • Introduction
    • Level 1 & Level 2 Data
      • Level 1 Aggregations
        • Trade Count, OHLCV, & VWAP
          • OHLCV only
          • VWAP only
      • Level 1 Tick-Level
        • All trades
        • Derivative liquidation events
        • Borrows, repayments, liquidations, and withdrawals
      • Level 2 Aggregations
        • Market depth (snapshot)
        • Market depth (aggregation)
        • Price slippage (snapshot)
        • Price slippage (aggregation)
        • Bid-ask spread (aggregation)
        • Tokens in a liquidity pool
          • Tokens in a liquidity pool (Uniswap v3)
        • Interest rates, borrowed and deposited amounts
        • Raw order book snapshot
          • Raw order book snapshot + market depth, bid/ask spread & price slippage
      • Level 2 Tick-Level
        • Mints and burns
    • Reference Data
      • Free tier
        • Asset codes
        • Exchange codes
        • Exchange trading pair codes (instruments)
        • Lending protocol codes
        • Blockchain codes
      • Advanced tier
        • Derivatives contract details
        • Derivatives price details
      • Premium tier
        • Market capitalization and circulating supply (BETA)
  • ANALYTICS Solutions
    • Introduction
    • Kaiko Fair Market Value
      • Kaiko Fair Market Value (Direct prices for high liquidity pairs)
      • Kaiko Fair Market Value (Synthetic prices for low liquidity pairs)
        • Convert with Oanda FX Rates
    • Kaiko Derivatives Risk Indicators
      • Exchange-provided metrics
      • Token-level liquidation volumes
      • Implied volatility calculation - smile
      • Implied volatility calculation - surface
    • Kaiko Portfolio Risk & Performance
      • Value at risk calculation
      • Custom valuation
  • Monitoring Solutions
    • Kaiko Market Explorer
      • Assets
      • Exchanges
    • Kaiko Blockchain Monitoring
      • Ethereum Wallets
        • Balances and transactions
      • Bitcoin Wallets
        • Balances
        • Transaction
      • Solana Wallets
        • Balances and transactions
      • Provenance Wallets
        • Balances and transactions
  • Misc & Legacy endpoints
    • CME
Powered by GitBook
On this page
  • CME Fixing Prices
  • What is this endpoint for?
  • Endpoint
  • Parameters
  • Fields
  • Request example
  • Response example
  • CF Benchmark Reference Rates
  • What is this endpoint for?
  • Endpoint
  • Parameters
  • Fields
  • Request example
  • Response example

Was this helpful?

Export as PDF
  1. Misc & Legacy endpoints

CME

CME Fixing Prices

What is this endpoint for?

CME Group publishes fixing prices, typically calculated based on the volume-weighted average price (VWAP) of contracts traded during a pre-defined window of time. These price references are used to determine the exercise and assignment of options positions at expiration and serve as an informational reference point for market participants. Fixing prices also can play an important role in determination of price limits during rapidly moving markets.

For the fixing prices of cryptocurrencies, Bitcoin fixing price will be based on a notionally adjusted volume-weighted average traded price of Bitcoin futures and Micro Bitcoin futures during the 30 minutes prior to 4:00 p.m. London time. For Ethereum fixing price, it will be based on Ether futures and Micro Ether futures.

Endpoint

https://us.market-api.kaiko.io/v2/data/fixing.v1/xcme

Parameters

No parameters supported

Fields

Field
Description

trade_date

Reference date of the Fixing Prices

timestamp

Event timestamp

product_code

Product code

instrument

Instrument code

description

Description of the instrument

fixing_price

Fixing price published by CME

Request example

curl --compressed -H 'Accept: application/json' -H 'X-Api-Key: <client-api-key>' \
  'https://us.market-api.kaiko.io/v2/data/fixing.v1/xcme'

Response example

{
    "query": {},
    "time": "2024-05-21T07:04:25.684Z",
    "timestamp": 1716275065684,
    "data": [
        {
            "trade_date": "2024-04-30",
            "timestamp": 1714489210000,
            "product_code": "BTC",
            "instrument": "BTCK4",
            "description": "Bitcoin Futures",
            "fixing_price": 61602.66
        },
        /* ... */
    ],
    "result": "success"
}

CF Benchmark Reference Rates

What is this endpoint for?

This REST API endpoint provides several CME CF Reference Rates, including Bitcoin, Ethereum and others, which are published once a day. These benchmark index prices aggregate trade data from multiple USD markets operated by major cryptocurrency exchanges that conform to the CME CF Constituent Exchange Criteria.

Endpoint

https://us.market-api.kaiko.io/v2/data/cfbenchmark.v1/cfbenchmarks/xcme

Parameters

No parameters supported

Fields

Field
Description

ref_date

Publication date of the reference rates

instrument

Reference rates name

price

Value of the reference rates

Request example

curl --compressed -H 'Accept: application/json' -H 'X-Api-Key: <client-api-key>' \
  'https://us.market-api.kaiko.io/v2/data/cfbenchmark.v1/cfbenchmarks/xcme'

Response example

{
    "query": {},
    "time": "2024-05-21T09:44:14.892Z",
    "timestamp": 1716284654892,
    "data": [
        {
            "ref_date": "2024-04-26",
            "instrument": "AAVEUSD_RR",
            "price": 90.7542
        },
        {
            "ref_date": "2024-04-26",
            "instrument": "ADAUSD_RR",
            "price": 0.470587
        },
        /* ... */
    ],
    "result": "success"
}
PreviousBalances and transactions

Last updated 11 months ago

Was this helpful?