Error: Quantity greater than max quantity, Only on specific ticker.

When I am sending a market order on ICPUSDT I always get that error and I made sure that I have enough balance amount on my account, The other tickers works without any problem only that specific ticker.

Here is the sample request:
https://fapi.binance.com/fapi/v1/order?type=MARKET&side=SELL&symbol=ICPUSDT&quantity=430.25&newOrderRespType=ACK&timestamp=1624801380243&signature=eaeaba1c7909b18508eab833532aaad991e4e4e2c210a71b4df731249b57a8ee

Hi. Please keep an eye on the filter specified in GET /fapi/v1/exchangeInfo endpoint. As the error message indicates, the quantity is larger than its maximum acceptable number.

{
            "symbol": "ICPUSDT",
            "pair": "ICPUSDT",
            "contractType": "PERPETUAL",
            "filters": [
                {
                    "stepSize": "0.01",
                    "filterType": "MARKET_LOT_SIZE",
                    "maxQty": "300",
                    "minQty": "0.01"
                },
            ],
            ...
        }