history quote return ?

hi guys exist a API for return a history quotation at a specific time ??
example i want know at 15/02/2022 at time 11:02 BNBUSDT how much was quoted ?
thanks

You can query historical prices from Compressed/Aggregate Trades List. My understanding is that Aggregate Trades List provides the same pricing data as the historical spot trading prices, but the trades that occur at the same instant and at the same price are combined or aggregated into a single trade.

Example queries:

$ curl --silent "https://api.binance.com/api/v3/aggTrades?symbol=ADAUSDT&startTime=1523945404540&li[10/1872]gojq
[
  {
    "M": true,
    "T": 1523945405147,
    "a": 10102,
    "f": 11249,
    "l": 11249,
    "m": true,
    "p": "0.25518000",
    "q": "5222.97000000"
  },
  {
    "M": true,
    "T": 1523945405147,
    "a": 10103,
    "f": 11250,
    "l": 11250,
    "m": true,
    "p": "0.25517000",
    "q": "500.00000000"
  }
]
$ curl --silent "https://api.binance.com/api/v3/aggTrades?symbol=ADAUSDT&endTime=1523945404540&limit=2" | gojq
[
  {
    "M": true,
    "T": 1523945403948,
    "a": 10100,
    "f": 11247,
    "l": 11247,
    "m": false,
    "p": "0.25520000",
    "q": "659.00000000"
  },
  {
    "M": true,
    "T": 1523945404539,
    "a": 10101,
    "f": 11248,
    "l": 11248,
    "m": false,
    "p": "0.25520000",
    "q": "4107.00000000"
  }
]
$ curl --silent "https://api.binance.com/api/v3/aggTrades?symbol=ADAUSDT&startTime=1523945404539&limit=1" | gojq
[
  {
    "M": true,
    "T": 1523945404539,
    "a": 10101,
    "f": 11248,
    "l": 11248,
    "m": false,
    "p": "0.25520000",
    "q": "4107.00000000"
  }
]

Hi there, there’s no API that can consult historical price directly, but you can probably have an estimation based on historical trades data, which you can obtain at Binance Data Collection or self request with Binance API Documentation

with /api/v3/klines Kline/Candlestick Data is possible retrive old price ??

to call at this time for example curl -X 'GET' \ 'https://api.binance.com/api/v3/klines?symbol=BNBUSDT&interval=1m&startTime=1645050959197&endTime=1645050959197&limit=1000' \ -H 'accept: application/json'
but not return nothing o_O
thanks

I also tried to use kline for this, but (if I understand correctly) kline only supports a date range of 200 days into the past. If you, like me, need to go back further, you cannot use it.

but also Binance Data Collection is limitated arrive at 28/02/2021 is possible have all history ??
thanks

Binance also publishes monthly spot trading history data for over two thousand cryptocurrency trading pairs.