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",
    "maxTotal": "10000000000",
    "tradesEnabled": true,
    "isCollateral": true,
    "type": "spot"
  }
]

Response

Successful response

name
string

Market pair name

Example:

"SON_USD"

stock
string

Ticker of stock currency

Example:

"SON"

money
string

Ticker of money currency

Example:

"USD"

stockPrec
string

Stock currency precision

Example:

"3"

moneyPrec
string

Precision of money currency

Example:

"2"

feePrec
string

Fee precision

Example:

"4"

makerFee
string

Default maker fee ratio

Example:

"0.001"

takerFee
string

Default taker fee ratio

Example:

"0.001"

minAmount
string

Minimal amount of stock to trade

Example:

"0.001"

minTotal
string

Minimal amount of money to trade

Example:

"0.001"

maxTotal
string

Maximum total(amount * price) of money to trade

Example:

"10000000000"

tradesEnabled
boolean

Is trading enabled

Example:

true

isCollateral
boolean

Is margin trading enabled

Example:

true

type
enum<string>

Market type. Possible values: spot, futures

Available options:
spot,
futures
Example:

"spot"