Skip to main content
GET
Market Info
TradFi futures: coming soon — not yet returned by this endpoint.

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. Perpetual futures markets report USDT as the 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 percentage value (e.g., "0.1" means 0.1%). Divide by 100 to convert to a decimal ratio. GET /api/v4/public/assets reports maker_fee in the same format.

Example:

"0.1"

takerFee
string
required

Default taker fee as a percentage value (e.g., "0.1" means 0.1%). Divide by 100 to convert to a decimal ratio. GET /api/v4/public/assets reports taker_fee in the same format.

Example:

"0.1"

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"

maxTotal
string
required

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

Example:

"10000000000"

tradesEnabled
boolean
required

Indicates whether trading is enabled. The response includes only markets enabled for trading, so the value is always true.

Example:

true

isCollateral
boolean
required

Indicates whether margin trading is enabled

Example:

true

type
enum<string>
required

Market type. Possible values: spot, futures, tradfiFutures

Available options:
spot,
futures,
tradfiFutures
Example:

"spot"

isTradFiFutures
boolean
required

Indicates whether the market is a traditional-finance (TradFi) futures market. Always paired with type: tradfiFutures. TradFi futures markets are coming soon and are not yet returned; once available they are region-gated and omitted from the response entirely where not available.

Example:

false

delistedAt
integer<int64> | null
required

Announced delisting date as a Unix timestamp in seconds. null when no delisting is announced for the market. The field is always present in the response.

Example:

1786752000