$url = "https://panel.tree.link/api/market/6/bring-orders"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($ch); if (curl_errno($ch)) { die("cURL error: " . curl_error($ch)); } curl_close($ch); $data = json_decode($response, true); if (isset($data["items"]) && is_array($data["items"])) { echo ''; } else { echo "No data found."; }