i dont think it is sent with the backslashes. use some http echo service and try it for yourself
$request = Http::asJson()->acceptJson();
$response = $request->post('https://echo.free.beeceptor.com', [
'redirect_uri' => 'https://hagil.nortesulvirtual.com/api/integrations/magalu',
]);
dump($response->body());
i see you are using ddWithCurl() so i assume it is this package https://github.com/jigar-dhulla/laravel-http-to-curl (or similar).
the curl part from json is generated by this line: https://github.com/jigar-dhulla/laravel-http-to-curl/blob/main/src/CurlCommandLineGenerator.php#L25
which uses json_encode() without JSON_UNESCAPED_SLASHES option, so it is like calling
dump(json_encode(['redirect_uri' => 'https://hagil.nortesulvirtual.com/api/integrations/magalu']));
//"{"redirect_uri":"https:\/\/hagil.nortesulvirtual.com\/api\/integrations\/magalu"}"
//if they used the option
json_encode(['redirect_uri' => 'https://hagil.nortesulvirtual.com/api/integrations/magalu'], JSON_UNESCAPED_SLASHES);
//"{"redirect_uri":"https://hagil.nortesulvirtual.com/api/integrations/magalu"}"
but it should be no problem at all