For the complete documentation index, see llms.txt. This page is also available as Markdown.

24hr Tickers Price

24 hour rolling window price changes

Track 24 hour rolling window price changes to receive stats about a certain market. For example 24 hour low, high, average price, price change and more.

Endpoint

GET /sapi/v1/market/tickers/ 

Query Params

Field
Type
Mandatory
Description

market

STRING

NO

If no market is specified, all markets ticker price will be returned

Example

{baseurl}/sapi/v1/market/tickers/?market=ethusdc

Response

{
  "status": "success",
  "message": "Retrieval Successful",
  "payload": {
    "ethusdc": {
      "at": "1660636224",
      "ticker": {
        "at": "1660636224",
        "avg_price": "0.0",
        "high": "0.0",
        "last": "1697.0",
        "low": "0.0",
        "open": "0.0",
        "price_change_percent": "+0.00%",
        "volume": "0.0",
        "amount": "0.0"
      }
    }
  }
}

Last updated

Was this helpful?