Niza Global - API Docs
  • Introduction
  • General
  • Authentication
  • PUBLIC ENDPOINTS
    • Markets
    • Tickers
    • OHLC Data
    • Order Book
    • Historical Trades
  • AUTHENTICATED ENDPOINTS
    • Balances
      • (Deprecated) Trade Wallet
      • Spot Wallet
    • Orders
      • Create Order
      • Cancel Order
      • Open Orders
      • Closed Orders
      • Get Order
    • Trades
      • Trades History
      • Get Trade
  • Websocket API 1.0
    • Overview
    • Connection Details
    • WebSocket Authentication
    • Public Channels
      • Ticker Information
      • OHLC
      • Recent Trades
      • Orderbook
    • Private Channels
      • Order Executed
      • Trade Executed
Powered by GitBook
On this page
  1. PUBLIC ENDPOINTS

Tickers

Get Tickers

GET/tickers

Get ticker information for all or requested market pairs:

  • Today's prices start at midnight UTC

  • Leaving the ticker_id parameter blank will return tickers for all assets

Query Parameters

Name
Value
Required

ticker_id

string: NIZA/USDT

Response

[
    {
        "ticker_id": "DEMONIZA/USDT",
        "base_currency": "DEMONIZA",
        "target_currency": "USDT",
        "last_price": "0.9",
        "base_volume": "2108353.039823",
        "target_volume": "0.000000",
        "bid": "0.00867410",
        "ask": "0.00869230",
        "high": "0.00898780",
        "low": "0.00782030"
    }
]
{
  "error": "Invalid request"
}
PreviousMarketsNextOHLC Data

Last updated 1 month ago