Thank You For Your Message

The message was sent successfully.
We will contact you as soon as possible.

Sharing is caring

Come visit us

For a visit to the visitor's center or to purchase at the local shop
We will be happy to see you
תעודת כשרות לשופר
Kosher certificate for shofar
Share

Before you leave, we would be happy if you share.

שלח/י הודעה בWhatsApp
Need Help?
Hello 👋
Can we help you?
// Replace with your actual API key const apiKey = "ed019315a6f318291c64a073f865e86e"; // Function to fetch currency data function fetchCurrencyData() { const url = `https://api.currencylayer.com/list?access_key=${apiKey}`; fetch(url) .then(response => { if (!response.ok) { throw new Error(`Network response was not ok (status ${response.status})`); } return response.json(); }) .then(data => { // Process the currency data here const currencies = data.currencies; console.log(currencies); // Log the list of currencies to the console }) .catch(error => { console.error('Error fetching currency data:', error); }); } // Add the function to the page's header document.addEventListener('DOMContentLoaded', () => { fetchCurrencyData(); });