34078-vm/php/functions.php
Flatlogic Bot 3e970d5b6e v3
2025-09-17 16:03:10 +00:00

14 lines
329 B
PHP

<?php
function getPolishInterestRates() {
$url = 'http://api.nbp.pl/api/stat/nbp/interest_rate?format=json';
$response = file_get_contents($url);
if ($response === false) {
return null;
}
$data = json_decode($response, true);
if ($data === null) {
return null;
}
return $data;
}
?>