// مفتاح API الخاص بك const apiKey = "978db8628388e7434fe2c6b71ec4cd13:cbc4d9b5fb63143d84e3e1df90245f59"; const stockSymbol = "AAPL"; // رمز السهم const apiUrl = `https://api.gurufocus.com/public/user/${apiKey}/stock/${stockSymbol}/financials`; // إرسال طلب لجلب البيانات fetch(apiUrl) .then(response => response.json()) .then(data => { // تحقق من البيانات قبل العرض if (data && data.financials && data.financials.price) { document.getElementById("stock-price").innerHTML = `السعر الحالي: ${data.financials.price}`; } else { document.getElementById("stock-price").innerHTML = "لم يتم العثور على بيانات."; } }) .catch(error => { console.error("Error fetching stock data:", error); document.getElementById("stock-price").innerHTML = "حدث خطأ أثناء جلب البيانات."; });
سوق-ستور

قوقل بلاي المتجر الامريكي

لا توجد منتجات في هذا القسم .