Try sending the data as a body https://laravel.com/docs/8.x/http-client#sending-a-raw-request-body
Http::withHeaders([
'X-MBX-APIKEY' => 'API_KEY_PUBLIC',
'Content-Type' => 'application/x-www-form-urlencoded',
])->withBody(http_build_query([
'timestamp' => 1640683489756,
'symbol' => 'BTCUSDT',
'type' => 'MARKET',
'side' => 'BUY',
'quantity' => 1,
'signature' => '73gvd7c53f182160ff0be23cdswe697d6278f2d6fca09drvrdf6'
]), 'application/json')->post(
'https://api.binance.com/api/v3/order'
)->collect()->toArray();