API
- HTTP metodu
- POST
- API URL
- https://smm.chelfor.com/api/v2
- Yanıt biçimi
- JSON
- API anahtarı
- Kayıt olduktan sonra Hesap sayfasında
Standart SMM panel API v2 ile uyumludur; mevcut bayi panelleri ve scriptler doğrudan bağlanabilir. Bakiye ve ücretler TRY cinsindendir.
Servis listesi
| Parametre | Açıklama |
|---|---|
key | API anahtarınız |
action | services |
Örnek yanıt
[{"service":1001,"name":"Instagram Takipçi | Max 10K","type":"Default","category":"Instagram","rate":"90.0000","min":"50","max":"10000","refill":true,"cancel":true}]
Sipariş oluştur
| Parametre | Açıklama |
|---|---|
key | API anahtarınız |
action | add |
service | Servis ID |
link | Link veya kullanıcı adı |
quantity | Adet (Default tip) |
comments | Yorumlar, satır satır (Custom Comments) |
usernames | Kullanıcı adları (Mentions) |
answer_number | Anket cevabı (Poll) |
keywords | Anahtar kelimeler (SEO) |
runs / interval | Drip-feed (opsiyonel) |
Örnek yanıt
{"order": 23501}
Sipariş durumu
| Parametre | Açıklama |
|---|---|
key | API anahtarınız |
action | status |
order | Sipariş ID |
Örnek yanıt
{"charge":"0.27819","start_count":"3572","status":"Partial","remains":"157","currency":"TRY"}
Çoklu sipariş durumu
| Parametre | Açıklama |
|---|---|
key | API anahtarınız |
action | status |
orders | Sipariş ID'leri virgülle (en fazla 100) |
Örnek yanıt
{"1":{"charge":"0.27819","start_count":"3572","status":"Partial","remains":"157","currency":"TRY"},"10":{"error":"Incorrect order ID"}}
Telafi (refill) oluştur
| Parametre | Açıklama |
|---|---|
key | API anahtarınız |
action | refill |
order / orders | Sipariş ID veya virgülle çoklu |
Örnek yanıt
{"refill":"1"}
Telafi durumu
| Parametre | Açıklama |
|---|---|
key | API anahtarınız |
action | refill_status |
refill / refills | Telafi ID |
Örnek yanıt
{"status":"Completed"}
İptal talebi
| Parametre | Açıklama |
|---|---|
key | API anahtarınız |
action | cancel |
orders | Sipariş ID'leri virgülle |
Örnek yanıt
[{"order":9,"cancel":{"error":"Incorrect order ID"}},{"order":2,"cancel":1}]
Bakiye
| Parametre | Açıklama |
|---|---|
key | API anahtarınız |
action | balance |
Örnek yanıt
{"balance":"100.84292","currency":"TRY"}
PHP örnek kod
<?php
$ch = curl_init('https://smm.chelfor.com/api/v2');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_POST => 1,
CURLOPT_POSTFIELDS => http_build_query([
'key' => 'API_ANAHTARINIZ',
'action' => 'add',
'service' => 1001,
'link' => 'https://instagram.com/kullanici',
'quantity' => 1000,
]),
]);
$res = json_decode(curl_exec($ch), true);
print_r($res); // ['order' => 23501]