Package Exports
- speedsmm-api
- speedsmm-api/app.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (speedsmm-api) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
🚀 speedsmm-api
speedsmm-api
, Sosyal Medya Pazarlama (SMM) panelleri ile kolayca etkileşime geçmenizi sağlayan bir Node.js modülüdür. Bu modül, API anahtarınızı ve proxy ayarlarınızı kullanarak çeşitli SMM hizmetlerine erişim sağlar.
https://speedsmm.com SMM Software
📦 Kurulum
npm install speedsmm-api
📚 Kullanım
Modülü kullanmak için, önce smmAPI
sınıfını içe aktarın ve gerekli seçeneklerle yeni bir örnek oluşturun.
const smmAPI = require('speedsmm-api');
const smm = new smmAPI({
key: 'YOUR_API_KEY',
api: 'https://example.com/api',
proxy: [
{
host: 'proxy_host',
port: 8080,
auth: {
username: 'proxy_user',
password: 'proxy_pass'
}
}
]
});
🌟 API Metodları
💰 getBalance()
API bakiyenizi sorgular.
smm.getBalance().then(response => {
console.log(response);
}).catch(error => {
console.error(error);
});
🛠️ getServices()
Mevcut hizmetleri listeler.
smm.getServices().then(response => {
console.log(response);
}).catch(error => {
console.error(error);
});
📊 getStatus({ order })
Belirtilen siparişin durumunu sorgular.
smm.getStatus({ order: '12345' }).then(response => {
console.log(response);
}).catch(error => {
console.error(error);
});
➕ addOrder({ service, data })
Yeni bir sipariş ekler.
smm.addOrder({
service: 'service_id',
<<<<<<< HEAD
data: { link: "https://www.instagram.com/p/CFQ4ZJ5nZ6e/", quantity: 100, custom: "test" }
=======
data: {
link: 'https://example.com',
quantity: 100,
custom: 'custom_data'
}
>>>>>>> f9b8dc4a6b8b3569308d2516cc86cc1306468ebb
}).then(response => {
console.log(response);
}).catch(error => {
console.error(error);
});
❌ ordersCancel({ orders })
Bir veya birden fazla siparişi iptal eder.
smm.ordersCancel({ orders: ['12345', '67890'] }).then(response => {
console.log(response);
}).catch(error => {
console.error(error);
});
🔄 refill({ order })
Bir siparişi doldurur.
smm.refill({ order: '12345' }).then(response => {
console.log(response);
}).catch(error => {
console.error(error);
});
🔍 refillStatus({ order })
Doldurma durumunu sorgular.
smm.refillStatus({ order: '12345' }).then(response => {
console.log(response);
}).catch(error => {
console.error(error);
});
🔄 refillMultipleStatus({ orders })
Birden fazla siparişin doldurma durumlarını sorgular.
smm.refillMultipleStatus({ orders: ['12345', '67890'] }).then(response => {
console.log(response);
}).catch(error => {
console.error(error);
});
🌐 getMyIP()
Kendi IP adresinizi sorgular.
smm.getMyIP().then(response => {
console.log(response);
}).catch(error => {
console.error(error);
});
📝 Lisans
- ⚖️ Its protected by Creative Commons (CC BY-NC-SA 4.0)