WebKit GuruWebKit Guru
कॅटलॉग
साइन अप
डेव्हलपर्ससाठी

रीसेलर्स आणि ऑटोमेशनसाठी API

एक HTTP एंडपॉइंट संपूर्ण वर्कफ्लो कव्हर करतो: कॅटलॉग वाचा, ऑर्डर दाखल करा, स्टेटस तपासा, Refill आणि रद्दीकरण विनंत्या करा. प्रोटोकॉल बहुतांश SMM पॅनेल्स वापरत असलेल्या फॉर्मॅटशी जुळतो, त्यामुळे तयार इंटिग्रेशनला फक्त URL आणि की बदलणे पुरे.

पत्ता

POST https://webkit.guru/api/v2

फक्त POST. बॉडी application/x-www-form-urlencoded किंवा application/json म्हणून पाठवता येते — दोन्ही फॉर्मॅट स्वीकारले जातात, रिस्पॉन्स नेहमी JSON.

ऑथेंटिकेशन

की विनंतीच्या बॉडीमध्ये key फील्डमध्ये पाठवली जाते. आम्ही फक्त तिचा SHA-256 हॅश जतन करतो, त्यामुळे डेटाबेसमधून की रिकव्हर करणे अशक्य — जर ती हरवली, तर नवीन जारी करा. की डॅशबोर्डमध्ये कधीही डिसेबल करता येते, ती लगेच काम करणे बंद करते.

रेट लिमिट

एका IP पत्त्याकडून प्रति मिनिट 60 विनंत्या. त्यावर एंडपॉइंट 429 ने उत्तर देतो आणि Retry-After हेडरसह पुढील प्रयत्नापर्यंत किती सेकंद थांबायचे ते सांगतो. स्टेटस एका कॉलप्रति एक ऑर्डरऐवजी orders द्वारे बॅचमध्ये विनंती करणे चांगले.

मेथड्स

action=services

सेवा यादी

The full catalogue with prices, limits and refill flags. Prices already include your markup — these are the amounts charged to your balance.

पॅरामीटरप्रकारआवश्यकवर्णन
keystringहोयAPI key from your dashboard, “API” tab
actionstringहोयThe string “services”

रिस्पॉन्स

[
  {
    "service": 21251,
    "name": "Telegram Views",
    "type": "Default",
    "category": "Telegram",
    "rate": 0.41,
    "min": 10,
    "max": 50000000,
    "refill": true,
    "cancel": true
  }
]
action=add

ऑर्डर तयार करा

Charges your balance and queues the order. If the provider rejects it, the amount is refunded automatically.

पॅरामीटरप्रकारआवश्यकवर्णन
keystringहोयAPI key from your dashboard, “API” tab
actionstringहोयThe string “add”
serviceintहोयService ID from the services method
linkstringहोयLink to the profile or post. The format is validated per platform and metric
quantityintहोयQuantity within the service min and max
runsintनाहीDrip-feed: how many runs
intervalintनाहीDrip-feed: interval between runs, in minutes

रिस्पॉन्स

{ "order": 84213 }
action=status

ऑर्डर स्टेटस

A single order via order, or up to a hundred at once via orders.

पॅरामीटरप्रकारआवश्यकवर्णन
keystringहोयAPI key from your dashboard, “API” tab
actionstringहोयThe string “status”
orderintनाहीऑर्डर ID
ordersint[]नाहीComma-separated IDs, up to 100

रिस्पॉन्स

{
  "charge": "410.00",
  "start_count": "15420",
  "status": "in_progress",
  "remains": "3180",
  "currency": "RUB"
}

बॅच रिस्पॉन्स

{
  "84213": { "charge": "410.00", "status": "completed",   "remains": "0",    "start_count": "15420", "currency": "RUB" },
  "84214": { "charge": "120.00", "status": "in_progress", "remains": "890",  "start_count": "2310",  "currency": "RUB" },
  "84215": { "error": "Incorrect order ID" }
}
action=refill

Refill विनंती करा

Available for services flagged refill. Returns a refill ID to check the status with.

पॅरामीटरप्रकारआवश्यकवर्णन
keystringहोयAPI key from your dashboard, “API” tab
actionstringहोयThe string “refill”
orderintनाहीऑर्डर ID
ordersint[]नाहीComma-separated IDs, up to 100

रिस्पॉन्स

{ "refill": 1932 }

बॅच रिस्पॉन्स

[
  { "order": 84213, "refill": 1932 },
  { "order": 84214, "error": "Order is not sent to provider yet" }
]
action=refill_status

Refill status

The ID is ours, not the provider's — you never need to know which supplier fulfils the order.

पॅरामीटरप्रकारआवश्यकवर्णन
keystringहोयAPI key from your dashboard, “API” tab
actionstringहोयThe string “refill_status”
refillintनाहीRefill ID
refillsint[]नाहीComma-separated IDs, up to 100

रिस्पॉन्स

{ "status": "Completed" }

बॅच रिस्पॉन्स

[
  { "refill": 1932, "status": "Completed" },
  { "refill": 1933, "status": "Pending" }
]
action=cancel

ऑर्डर रद्द करा

The provider may refuse a cancellation, so the order moves to cancel_requested. The actual cancellation and refund are confirmed by status sync.

पॅरामीटरप्रकारआवश्यकवर्णन
keystringहोयAPI key from your dashboard, “API” tab
actionstringहोयThe string “cancel”
orderintनाहीऑर्डर ID
ordersint[]नाहीComma-separated IDs, up to 100

रिस्पॉन्स

{ "cancel": 1 }

बॅच रिस्पॉन्स

[
  { "order": 84213, "cancel": 1 },
  { "order": 84214, "error": "Incorrect order ID" }
]
action=balance

बॅलन्स

Current account balance, in rubles.

पॅरामीटरप्रकारआवश्यकवर्णन
keystringहोयAPI key from your dashboard, “API” tab
actionstringहोयThe string “balance”

रिस्पॉन्स

{ "balance": "12480.50", "currency": "RUB" }

कोड नमुने

cURL

curl -X POST https://webkit.guru/api/v2 \
  -d key=YOUR_KEY \
  -d action=add \
  -d service=21251 \
  -d link=https://t.me/example/42 \
  -d quantity=1000

PHP

<?php
$response = file_get_contents('https://webkit.guru/api/v2', false, stream_context_create([
    'http' => [
        'method'  => 'POST',
        'header'  => 'Content-Type: application/x-www-form-urlencoded',
        'content' => http_build_query([
            'key'      => 'YOUR_KEY',
            'action'   => 'add',
            'service'  => 21251,
            'link'     => 'https://t.me/example/42',
            'quantity' => 1000,
        ]),
    ],
]));

$order = json_decode($response, true);

Python

import requests

response = requests.post("https://webkit.guru/api/v2", data={
    "key": "YOUR_KEY",
    "action": "add",
    "service": 21251,
    "link": "https://t.me/example/42",
    "quantity": 1000,
})

order = response.json()

JavaScript

const response = await fetch("https://webkit.guru/api/v2", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    key: "YOUR_KEY",
    action: "add",
    service: 21251,
    link: "https://t.me/example/42",
    quantity: 1000,
  }),
});

const order = await response.json();

ऑर्डर स्टेटस

status मेथडचे status फील्ड यापैकी एक मूल्य रिटर्न करते.

pending
Accepted by the panel, not yet sent to the provider
in_progress
सुरू आहे
processing
Provider accepted it, delivery is about to start
completed
Fully delivered
partial
Partially delivered, the difference is refunded
cancel_requested
Cancellation requested, waiting for the provider
canceled
Cancelled, funds returned
failed
Could not be fulfilled, funds returned

एरर्स

बिझनेस एरर्स HTTP 200 आणि error फील्डसह येतात. फक्त ऑथेंटिकेशन आणि रेट लिमिट HTTP स्टेटस कोड वापरतात.

401 · Invalid API key
The key is unknown or has been disabled in the dashboard
429 · Rate limit exceeded
More than 60 requests per minute from one address. The response carries a Retry-After header
Incorrect order ID
No order with this ID belongs to your account
Unknown action
The action value is not one of those listed above

कनेक्ट होण्यास तयार?

अकाउंट तयार करा, बॅलन्स टॉप अप करा आणि API टॅबवर की जारी करा. वेगळी मंजुरी आवश्यक नाही.

अकाउंट तयार करा
WebKit GuruWebKit Guru

Накрутка, SMS-активации и временная почта в одном сервисе. Более 3500 услуг, гарантия восполнения, моментальный старт.

Сервис

  • Каталог услуг
  • О сервисе
  • Справка
  • Вопросы и ответы
  • Документация
  • API для разработчиков
  • SMS-активации
  • Временная почта
  • Отзывы

Документы

  • Публичная оферта
  • Условия использования
  • Политика конфиденциальности
  • Контакты

Мы в соцсетях

Поддержка круглосуточно, 24/7

Предлагаемые услуги не являются официальными услугами социальных сетей и не связаны с их правообладателями. Названия и логотипы платформ принадлежат их владельцам и используются для указания совместимости. Сервис не гарантирует конкретный результат продвижения: он зависит от алгоритмов площадок и может меняться. Оформляя заказ, вы соглашаетесь с публичной офертой.

© 2026 webkit.guru