Skip to main content
GET
/
api
/
v4
/
public
/
markets
Market Info
curl --request GET \
  --url https://whitebit.com/api/v4/public/markets
[
  {
    "name": "SON_USD",
    "stock": "SON",
    "money": "USD",
    "stockPrec": "3",
    "moneyPrec": "2",
    "feePrec": "4",
    "makerFee": "0.001",
    "takerFee": "0.001",
    "minAmount": "0.001",
    "minTotal": "0.001",
    "tradesEnabled": true,
    "type": "spot",
    "maxTotal": "10000000000",
    "isCollateral": true
  }
]

Response

Successful response

name
string
required

Market pair name

Example:

"SON_USD"

stock
string
required

Ticker of stock currency

Example:

"SON"

money
string
required

Ticker of money currency

Example:

"USD"

stockPrec
string
required

Maximum number of decimal places for the base (stock) currency quantity. Represented as a stringified integer.

Example:

"3"

moneyPrec
string
required

Maximum number of decimal places for the quote (money) currency amount. Represented as a stringified integer.

Example:

"2"

feePrec
string
required

Maximum number of decimal places used when calculating fees. Represented as a stringified integer.

Example:

"4"

makerFee
string
required

Default maker fee as a decimal ratio (e.g., "0.001" = 0.1%). Multiply by 100 to convert to a percentage.

Example:

"0.001"

takerFee
string
required

Default taker fee as a decimal ratio (e.g., "0.001" = 0.1%). Multiply by 100 to convert to a percentage.

Example:

"0.001"

minAmount
string
required

Minimum order quantity in the base (stock) currency.

Example:

"0.001"

minTotal
string
required

Minimum order total in the quote (money) currency.

Example:

"0.001"

tradesEnabled
boolean
required

Indicates whether trading is enabled

Example:

true

type
enum<string>
required

Market type. Possible values: spot, futures

Available options:
spot,
futures
Example:

"spot"

maxTotal
string

Maximum order total (quantity × price) in the quote (money) currency. "0" indicates no upper limit.

Example:

"10000000000"

isCollateral
boolean

Indicates whether margin trading is enabled

Example:

true