NDAX
  • Introduction
    • About NDAX
    • Purpose
  • General Information
  • FIX
    • FIX Straight Through Processing
    • Supported Message Type
    • Resources
    • Sequence Diagram
    • Header & Trailer
    • Administrative Message
      • Logon (35=A)
      • Heartbeat (35=0)
      • TestRequest (35=1)
      • ResendRequest (35=2)
      • Reject (35=3)
      • SequenceReset (35=4)
      • Logout (35=5)
    • Application Message
      • TradeCaptureReport (35=AE)
      • TradeCaptureReportAck (35=AR)
    • Message Component
      • RootParties
      • TrdCapRptSideGrp
      • Parties
  • Web API
    • Endpoints
    • Time
  • Private Endpoints
    • Authentication
    • Index
    • Trades
      • GET Trade
      • POST Trade
      • Batch Trades
    • Positions
      • GET Position
      • GET Platform Position
    • Accounts
      • GET Status
      • Delivery
      • Account
      • History
      • Movement
    • Deposits
      • GET
      • GET: Digital Asset Address
      • POST: Digital Asset Address
      • GET: Fiat Deposit
      • GET: Withdrawal
        • GET: Withdrawal by ID
        • GET: Digital Asset
        • Digital Asset by ID
        • Fiat
        • Fiat by ID
      • Gas Fees
      • POST: Withdrawal
      • Delete: Withdrawal
    • Transfers
      • POST: Transfer
      • GET: Transfer by ID
    • Participants
      • GET
      • GET by Email
      • POST New
      • Region
      • Patch
      • Relation
      • Documents
    • Liquidity
      • GET
      • POST
    • Convert
    • Withdraw
    • Payments
      • POST
      • GET
      • GET Status
    • Rewards & Loyalty
    • Awards
  • Private Socket Feed
    • Overiew
    • Authentication
    • Basic Setup
    • Balances
    • Prices
    • Subscription
  • Security
    • Don't
    • Bounty
  • Contact
Powered by GitBook
On this page
  1. Private Endpoints

Index

GET /index

To retrieve the most recently calculated value of NDAX's index. The index is specified by the 'underlying' and 'quoted_currency' query parameters, which are required in the request. The response will contain a JSON object with several fields:

  • 'timestamp': The timestamp at which the index value was calculated.

  • 'index': The name of the index.

  • 'underlying': The underlying asset of the index.

  • 'quoted_currency': The currency in which the index value is quoted.

  • 'value': The current value of the index.

Sample Response

{
  "timestamp": 123456789,
  "index": "BTC/e₹",
  "underlying": "BTC",
  "quoted_currency": "e₹",
  "value": 4564.23444523
}

Query for the most recently calculated NDAX's Index value.

The following query parameters are required:

  • underlying

  • quoted_currency

Parameter
Description
Type

timestamp

When the index was calculated

timestamp

index

The specific index, which is the unique combination of underlying and quoted_currency

string

underlying

The asset being valued

string

quoted_currency

The asset in which the underlying is being valued

string

value

The index price for the underlying asset, as quoted in the quoted_currency

number

PreviousAuthenticationNextTrades

Last updated 2 years ago