How can I get the minimum amount of money to make a transaction in a currency pair?

Hi, when making a purchase for an amount smaller than the minimum amount for the BTCEUR currency pair, the message is received: “Total order value should be more than 5 EUR.”. How can I get the value of this minimum amount (5 EUR)?

Thanks for the help. :slight_smile:

If you query the endpoint /api/v3/exchangeInfo, it will return the symbol details. For BTCEUR, the filter details:

{
   "filterType": "NOTIONAL",
   "minNotional": "5.00000000",
   "applyMinToMarket": true,
   "maxNotional": "9000000.00000000",
   "applyMaxToMarket": false,
   "avgPriceMins": 5
}

The minNotional value indicate this minimu amount required for this symbol.

you helped me alot! Thank you!