WebKit GuruWebKit Guru
કેટલોગ
રજીસ્ટર
ડેવલપર્સ

રિસેલર્સ અને ઑટોમેશન માટે API

એક HTTP એન્ડપોઇન્ટ આખું ચક્ર ઢાંકે છે: કેટલોગ મેળવો, ઓર્ડર બનાવો, સ્ટેટસ જાણો, રીફિલ વિનંતી કરો અથવા રદ કરો। પ્રોટોકોલ મોટાભાગના 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