Token conversion with Binance API

Viewed 280
1 Answers

I think you could use the Symbol Price Ticker which will give you current price between pairs of symbols.

For example:

GET https://api.binance.com/api/v3/ticker/price?symbol=BTCUSDT

Response:

{
  "symbol": "BTCUSDT",
  "price": "28275.50000000"
}
Related