DEVELOPER API V2

API Documentation

Automate your orders, check statuses, and manage balances seamlessly with our REST API.

Connection Details

HTTP METHOD POST
API ENDPOINT URL
https://gurutak.in/api/v2
RESPONSE FORMAT JSON (application/json)
AUTHENTICATION Sign in to generate your API Key
POST

1. Service List

action: services

Retrieve all available services, categories, rates, minimum, and maximum quantities.

Parameters
Parameter Type Description
key String Your unique API Key
action String Must be services
Example JSON Response
[
  {
    "service": 1,
    "name": "Instagram Followers [Real / Instant]",
    "type": "Default",
    "category": "Instagram Followers",
    "rate": "0.95",
    "min": "100",
    "max": "100000",
    "refill": true,
    "cancel": true
  }
]
POST

2. Add Order

action: add

Place a new order for any supported service type.

Parameters (Default)
ParameterTypeDescription
keyStringYour API Key
actionStringMust be add
serviceIntegerService ID
linkStringLink to target page / post
quantityIntegerNeeded quantity
runsIntegerOptional (Drip-feed runs)
intervalIntegerOptional (Drip-feed interval in minutes)
Example JSON Response (Success)
{
  "order": 104529
}
POST

3. Order Status & Multiple Orders

action: status

Check the status, start count, remains, and charge of single or multiple orders.

Parameters
ParameterTypeDescription
keyStringYour API Key
actionStringMust be status
orderIntegerSingle Order ID (e.g. 104529)
ordersStringMultiple Order IDs separated by comma (e.g. 104529,104530)
Example JSON Response (Single Order)
{
  "charge": "0.95",
  "start_count": "1420",
  "status": "Completed",
  "remains": "0",
  "currency": "INR"
}
Example JSON Response (Multiple Orders)
{
  "104529": {
    "charge": "0.95",
    "start_count": "1420",
    "status": "Completed",
    "remains": "0",
    "currency": "INR"
  },
  "104530": {
    "charge": "1.50",
    "start_count": "500",
    "status": "In progress",
    "remains": "200",
    "currency": "INR"
  }
}
POST

4. User Balance

action: balance

Fetch current account balance and currency code.

Parameters
ParameterTypeDescription
keyStringYour API Key
actionStringMust be balance
Example JSON Response
{
  "balance": "1500.50",
  "currency": "INR"
}