Skip to main content
Version: V3

Get Latest Price

  • GET /api/v3/market/ticker/price

Weight(IP): 4

Request parameters

ParameterTypeRequired?Description
symbolStringNoSingle trading pair (mutually exclusive with symbols).
symbolsArrayNoMultiple trading pairs. Accepts comma-separated values or a JSON array.

Request example

curl "https://api-spot.weex.com/api/v3/market/ticker/price?symbol=BTCUSDT"

Response parameters

FieldTypeDescription
symbolStringTrading pair.
priceStringLatest traded price.

The endpoint returns either a single object or an array of objects depending on whether symbol was supplied.

Response example

{
"symbol": "BTCUSDT",
"price": "68920.40"
}