1

How do I get the minimum transaction amount with the binance api? For example, the minimum purchase price for MANA / USDT and ATOM / USDT is '10 USDT'. The same is true for BTC / USDT. How do I get it from'from binance.client import Client'? I also want to know how to get it using ccxt.

Thank you.

tunaex
  • 11
  • 1
  • 3

1 Answers1

1

Look for the MIN_NOTIONAL filter in the exchangeInfo endpoint. It's unique for each pair symbol.

Path symbols[<index>].filters contains an array of filters. One of them should always have filterType value MIN_NOTIONAL. The value in minNotional is the minimal order amount in the quote currency (in your case USDT).

Docs: https://binance-docs.github.io/apidocs/spot/en/#filters

Petr Hejda
  • 40,554
  • 8
  • 72
  • 100