Bu siteden direk isteği yapıştır sana versin
https://ebubekirbastama.com.tr/CurltoPhp/index.html

Örnek kod:
// Ebubekir Bastama https://www.ebubekirbastama.com
$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, 'http://localhost:3000/api/sendText?phone=--&text=6565&session=default');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');


$headers = array();
$headers[] = 'Accept: application/json';
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

$result = curl_exec($ch);
if (curl_errno($ch)) {
    echo 'Error:' . curl_error($ch);
}
curl_close($ch);