<?php
$url = "https://k...content-available-to-author-only...k.com/api/v2/channels/touken/users/biely_cernoch";

$options = [
    "http" => [
        "method" => "GET",
        "header" => "Accept: application/json\r\n" .
                    "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\r\n"
    ]
];

$context = stream_context_create($options);
$response = file_get_contents($url, false, $context);

if ($response === false) {
    die("Error fetching data");
}

echo $response;
?>