我在requestbin上连接了我的传感器设备,现在这个requestbin正在工作并接受并显示数据 . 现在我想在index.php网站上显示数据

这是requestbin url:https://requestbin.co/r/enbh3gv751la/1E9GvdfMpWVS2U789k0AWXp5UeA

正如您将看到的,它正在接受数据 . 但我不知道如何在index.php中调用这些数据 .

我所知道的是如何发送请求:

<?php
$handle = curl_init('https://enbh3gv751la.x.pipedream.net/');
$data = [
  'key'=>'value'
];
$encodedData = json_encode($data);
curl_setopt($handle, CURLOPT_POST, 1);
curl_setopt($handle, CURLOPT_POSTFIELDS, $encodedData);
curl_setopt($handle, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);
$result = curl_exec($handle);
?>

谢谢 .