From 2e5942a3c3221ad65ec79f4f6bbac8b2851bc883 Mon Sep 17 00:00:00 2001 From: Michael Maroszek Date: Sat, 23 Nov 2024 22:46:25 +0100 Subject: [PATCH] fix epex api --- PowerPrice/module.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PowerPrice/module.php b/PowerPrice/module.php index ee146d5..2527375 100644 --- a/PowerPrice/module.php +++ b/PowerPrice/module.php @@ -174,7 +174,7 @@ private function FetchFromEPEXSpotEx($market, $trading_date, $delivery_date) ], ]; - $response = file_get_contents('https://www.epexspot.com/en/market-data?' . http_build_query($params), false, stream_context_create($opts)); + $response = file_get_contents('https://www.epexspot.com/en/market-results?' . http_build_query($params), false, stream_context_create($opts)); $json = json_decode($response);