---
title: "Rolling window price change statistics"
method: GET
path: "/api/v3/ticker"
tags: ["Market"]
---

# Rolling window price change statistics

`GET /api/v3/ticker`

The window used to compute statistics is typically slightly wider than requested windowSize.

openTime for /api/v3/ticker always starts on a minute, while the closeTime is the current time of the request. As such, the effective window might be up to 1 minute wider than requested.

E.g. If the closeTime is 1641287867099 (January 04, 2022 09:17:47:099 UTC) , and the windowSize is 1d. the openTime will be: 1641201420000 (January 3, 2022, 09:17:00 UTC)

Weight(IP): 4 for each requested symbol regardless of windowSize.

The weight for this request will cap at 200 once the number of symbols in the request is more than 50.

## Query parameters

- `symbol` string
- `symbols` string
- `windowSize` string
- `type` string

## Response `200`

Rolling price ticker

- object
  - `symbol` string, required
  - `priceChange` string, required
  - `priceChangePercent` string, required
  - `weightedAvgPrice` string, required
  - `openPrice` string, required
  - `highPrice` string, required
  - `lowPrice` string, required
  - `lastPrice` string, required
  - `volume` string, required
  - `quoteVolume` string, required
  - `openTime` integer, required
  - `closeTime` integer, required
  - `firstId` integer, required
  - `lastId` integer, required
  - `count` integer, required

## Other responses

- `400` — Bad Request

---

[API](https://skmtc.net/binance/apis/binance-public-spot-api.md) · [All operations](https://skmtc.net/binance/apis/binance-public-spot-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/binance/binance-public-spot-api/revisions/0dd2f133e12d/schema)
