selamlar,trbinance hesabım var api ürettim istek atıp deniyorum fakat api hatalı uyarısı alıyorum trbinance'nin farklı bir apisi mi mevcut acaba?

Kullandıgım kodlar ektedir

$secret = "";
$key = "";
 
$time = microtime(true) * 1000;
$timestamp = '&timestamp=' . number_format($time, 0, '.', '');
$signature = '&signature=' . hash_hmac('sha256', $timestamp, $secret);
 
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.binance.com/api/v3/account?' . $timestamp . $signature);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$headers = array();
$headers[] = 'X-MBX-APIKEY: ' . $key;
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
print_r(json_decode($result, true));