🐘
filename.php
<?php
$url = "https://damen-aktiv-studio.api.magicline.com/connect/v1/studio";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;



















