3v4l.org

run code in 300+ PHP versions simultaneously
<?php $endpoint = 'https://wedstrijdadministratie.scgouda.nl/api/v1/pietvanoosten'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $endpoint); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POSTFIELDS, []); $response = curl_exec($ch); curl_close($ch); $response = json_decode($response); echo $response; //$url = 'https://wedstrijdadministratie.scgouda.nl/api/v1/pietvanoosten'; //$data = file_get_contents($url); //echo $data;

preferences:
40.6 ms | 405 KiB | 5 Q