GET NFT Order Fee

get NFT order fee

EndPoint

GET api/v3/nft/info/orderUserRateAmount

minAmount is the minFee under the basic feeRate of the user, tradeCosts is the cost of L2 trade settlement, also it returns the market order requirements: the min/max order amount. So a valid order should meet these 3 requirements:.

  1. order.maxFeeBips >= feeRate.rate and order.amount >= minAmounts.

  2. order.amount * order.maxFeeBips > tradeCosts if order.amount < minAmounts.

  3. marketOrderInfo.min <= order.amount <= marketOrderInfo.max.

These amounts change according to ETH gas price and are refreshed every 15 mins.

Request

Response

Model

FeeTokenAmount

The result of query NFT market minimum fee tokens amount

OrderAmounts

Contains information about the order amounts that are valid for usage with the token in order-related APIs.

Last updated