@lukaszj you should return resulta from controller if want to do a api
Route::get('testapi', function () {
$countries = Countries::getApiCountries(); // calling just that. it works
$currencies = Currency::getApiCurrencies() //
return ['countries'=>$countries,'currencies '=>$currencies ];
}
and also should be called in api.php file because it's api