API Dokümantasyonu
Standart SMM API v2 protokolü ile tam uyumlu kullanıcı API'si. Anahtarınızı yalnızca Profil sayfasından yönetin.
Genel
| Alan | Değer |
|---|---|
| HTTP Metodu | POST (GET desteklenir) |
| API URL | /api/v2 |
| Yanıt Formatı | JSON |
| API Anahtarı | key parametresi (zorunlu) |
Kullanıcı bakiyesi action=balance
| Parametre | Açıklama |
|---|---|
key | API anahtarınız |
action | balance |
Örnek Yanıt
{
"balance": "100.50",
"currency": "TRY"
}
Servis listesi action=services
Aktif kategorilerdeki aktif servisler.
| Parametre | Açıklama |
|---|---|
key | API anahtarınız |
action | services |
Örnek Yanıt
[
{
"service": 1,
"name": "Instagram Followers",
"type": "Default",
"category": "Instagram",
"rate": "0.4500",
"min": "100",
"max": "10000",
"dripfeed": true,
"refill": true,
"cancel": false
}
]
Sipariş oluştur action=add
Sipariş motoru ile oluşturulur.
| Parametre | Açıklama |
|---|---|
service | Servis ID |
link | Hedef link (çoğu tür) |
quantity | Miktar |
runs, interval | Drip-feed (opsiyonel) |
comments, username, … | Servis türüne göre — tablo aşağıda |
Örnek Yanıt (başarılı)
{
"order": 12345
}
Örnek Yanıt (hata)
{
"error": "Not enough funds on balance"
}
Servis türlerine göre parametreler (11 tür)
| Tür | Parametreler | Not |
|---|---|---|
Default |
link, quantity |
Standart sipariş |
Package |
link |
Miktar otomatik = max |
Custom Comments |
link, comments |
Her satır = 1 adet |
Comment Likes |
link, quantity, username |
Yorum beğenisi |
Poll |
link, quantity, answer |
Anket şıkkı |
SEO |
link, quantity, keyword |
Anahtar kelime |
Mentions User Followers |
link, quantity, username |
Hedef kullanıcı |
Mentions Hashtag |
link, quantity, hashtag |
# etiketsiz |
Mentions Custom List |
link, usernames |
Satır başına kullanıcı |
Invites from Groups |
link, quantity, groups |
Kaynak grup |
Subscriptions |
username, min, max, posts, delay, expiry |
Abonelik — order id döner |
Sipariş durumu action=status
| Parametre | Açıklama |
|---|---|
action | status |
order | Tek sipariş ID |
Örnek Yanıt
{
"charge": "0.2781",
"start_count": "3572",
"status": "In progress",
"remains": "157",
"currency": "TRY"
}
Telafi oluştur action=refill
Tamamlanmış ve telafi destekli siparişler için telafi talebi oluşturur.
| Parametre | Açıklama |
|---|---|
key | API anahtarınız |
action | refill |
order | Sipariş ID |
Örnek Yanıt (başarılı)
{
"refill": "1"
}
Örnek Yanıt (hata)
{
"error": "Refill not available for this order"
}
Telafi durumu action=refill_status
Telafi talebinin güncel durumunu sorgular.
| Parametre | Açıklama |
|---|---|
key | API anahtarınız |
action | refill_status |
refill | Telafi ID |
Örnek Yanıt
{
"status": "Completed"
}
Çoklu sipariş durumu
| Parametre | Açıklama |
|---|---|
action | status |
orders | Virgülle ayrılmış ID listesi, örn. 1,2,3 |
Örnek Yanıt
{
"1": {
"charge": "0.2781",
"start_count": "1000",
"status": "Completed",
"remains": "0",
"currency": "TRY"
},
"2": {
"error": "Incorrect order ID"
}
}
Örnek PHP kodu
SMM v2 standart PHP sınıfı ve 11 servis türü için sipariş örnekleri.
Örnek PHP Kodunu İndir / Görüntüle