Ticker

The Ticker provides a general overview of the configuration and statistics of all markets or just a selected one - to do this, simply add the market code in the address. It shows the value of the smallest transaction we can make and the precision of the amount, rate and price. The precision of the amount (amountPrecision) determines how accurately we can determine the quantity of the first currency to buy or sell, the precision of the price (pricePrecision) determines the number of decimal places to which the result of our transaction will be rounded or how accurately we can determine the quantity of the second currency, the precision of the rate (ratePrecision) determines the number of decimal places of the rate with which we want to place an offer. Rate precision can vary over time depending on the exchange rate for a particular currency market. The precisions of amount (amountPrecision) and price (pricePrecision) stay unchanged. The Ticker also returns the current best bid and ask, as well as the last and the previous transaction price.

Path Params

trading_pair
string

Optional: symbol of trading pair you want information about.

📘

If you want to get information from specific market just use below path:
https://api.zondacrypto.exchange/rest/trading/ticker/BTC-PLN

Response details

Key

Type

Description

ticker

array

code

string

Currency pair for request

amountPrecision

integer

Number of decimal places of the first currency.

pricePrecision

integer

Number of decimal places of the transaction price or second currency.

ratePrecision

integer

Number of decimal places of the rate.

first / second

array

Arrays of data from first and second currency pair

  • currency

string

Currency shortcut

  • minOffer

decimal

Minimal value of currency that you can provide to order

  • scale

integer

Decimal precision

This field will be removed in the future.

time

Unix Timestamp

Time of execute on server. For this time all values are actual

highestBid

decimal

The best price of buy order at the moment

lowestAsk

decimal

The best price of sell order at the moment

rate

decimal

Rate of the last transaction

previousRate

decimal

Rate of the penultimate transaction.

Language