How to put API parameters in the URL

Hello,

I am trying to retrieve datas from this endpoints: https://api.binance.com/api/v3/klines by directly putting this url in my browser.

But I get an error message saying:
"Mandatory parameter 'symbol' was not sent, was empty/null, or malformed."

Problem is that I don’t know how I should put the ‘symbol’ parameter in the URL. Any idea ?

Best

Aymeric

You can append the parameter in the query string. Anything after the ? is considered as part of the query string.
https://api.binance.com/api/v3/klines?symbol=BTCUSDT

thanks!