Get all traded markets [Public]

Get the list of all the traded pairs on Kuna exchange. Returns an array of objects, each with the pair string, the tickers of both base and quoted asset alongside their precisions.

This is a public route, no need for authorization.

Data dictionary

📘

This endpoint does not take any parameters.

Exemplary request

Please try sending this request: {{baseURL}}/v4/markets/public/getAll

Response structure

You will receive a JSON in the response with data object, filled with an array of pairs objects structured like in this example:

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8

{
    "pair": "BCH_BTC",          // Traded pair of assets
    "baseAsset": {              // The base asset of the traded pair, the one to sell or buy as a result of the trade
        "code": "BCH",
        "precision": 8          // Maximum amount of digits for the decimal part of a number
    },
    "quoteAsset": {             // The quoted asset of the traded pair, the one to use to sell or buy the base asset 
        "code": "BTC",
        "precision": 8          // Maximum amount of digits for the decimal part of a number
    },
    "tickerPriceChange": "0"    // Relative change compared with the last tick
}

Errors

📘

As there are no parameters for this endpoint, you may encounter only general errors while using it.

Language
URL
Click Try It! to start a request and see the response here!