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) 363 B
const axios = require('axios'); async function getServices(apiKey, baseURL) { try { const response = await axios.get(`${baseURL}?key=${apiKey}&action=services`); return response.data; } catch (error) { throw new Error(`Servisler alınamadı: ${error.response?.data?.error || error.message}`); } } module.exports = { getServices };