UNPKG

roicmedya-api

Version:

RoicMedya.com SMM Modülü ile Instagram ve diğer platformlar için takipçi ve beğeni entegrasyonlarını zahmetsizce yapın.

13 lines (10 loc) 391 B
const axios = require('axios'); async function trackOrder(apiKey, baseURL, orderId) { try { const response = await axios.get(`${baseURL}?key=${apiKey}&action=status&order=${orderId}`); return response.data; } catch (error) { throw new Error(`Sipariş durumu alınamadı: ${error.response?.data?.error || error.message}`); } } module.exports = { trackOrder };