diff --git a/yt_dlp/extractor/vrt.py b/yt_dlp/extractor/vrt.py index ba2301ae5..aeeddc52a 100644 --- a/yt_dlp/extractor/vrt.py +++ b/yt_dlp/extractor/vrt.py @@ -103,7 +103,7 @@ def _call_api(self, video_id, client='null', id_token=None, version='v2'): }, separators=(',', ':')).encode())['vrtPlayerToken'] return self._download_json( - f'https://media-services-public.vrt.be/media-aggregator/{version}/media-items/{video_id}', + f'https://media-services-public.vrt.be/vualto-video-aggregator-web/rest/external/{version}/videos/{video_id}', video_id, 'Downloading API JSON', 'Failed to download API JSON', query={ 'client': client, 'vrtPlayerToken': vrt_player_token,