Price Info
The /price/:symbol endpoint returns the current price for a given symbol. This is typically used to fetch real-time price data for display or calculation purposes.
Method
GET /price/:symbol
:symbol— The trading symbol to fetch the price for (e.g.XBT,XBTUSDT).
Response
{
"status": 200,
"data": {
"price": "102889.1"
}
}