| HTTP Metodu | POST |
| API URL | https://takipcimagazasi.com/api/v2 |
| API Anahtarı | Panel → API sayfasından alın |
| Yanıt biçimi | JSON |
Hizmet listesi
| key | API anahtarınız |
|---|
| action | services |
|---|
[{"service": 12, "name": "Instagram Takipçi", "type": "Default", "category": "Instagram", "rate": "45.00", "min": "100", "max": "50000", "refill": true, "cancel": false}]
Sipariş ekle
| key | API anahtarınız |
|---|
| action | add |
|---|
| service | Hizmet ID |
|---|
| link | Bağlantı |
|---|
| quantity | Adet |
| comments | (özel yorum hizmetleri) her satıra bir yorum |
|---|
| runs / interval | (damla teslim) tekrar sayısı / dakika |
{"order": 23501}
Sipariş durumu
| action | status |
|---|
| order | Sipariş ID |
|---|
| orders | Virgülle ayrılmış ID'ler (en fazla 100) |
|---|
{"charge": "45.00", "start_count": "3572", "status": "In progress", "remains": "157", "currency": "TRY"}
Yeniden dolum
| action | refill |
|---|
| order / orders | Sipariş ID(leri) |
|---|
{"refill": "1"}
| action | refill_status |
|---|
| refill / refills | Dolum ID(leri) |
|---|
{"status": "Completed"}
İptal
| action | cancel |
|---|
| orders | Virgülle ayrılmış ID'ler |
|---|
[{"order": 9, "cancel": {"error": "Incorrect order ID"}}, {"order": 2, "cancel": 1}]
Bakiye
{"balance": "1250.00", "currency": "TRY"}
PHP örneği
$ch = curl_init('https://takipcimagazasi.com/api/v2');
curl_setopt_array($ch, [CURLOPT_POST => 1, CURLOPT_RETURNTRANSFER => 1,
CURLOPT_POSTFIELDS => http_build_query(['key' => 'API_ANAHTARINIZ', 'action' => 'add', 'service' => 12, 'link' => 'https://instagram.com/kullanici', 'quantity' => 1000])]);
$r = json_decode(curl_exec($ch), true); // ['order' => 23501]