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
action: services
1. Service List
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
action: add
2. Add Order
Place a new order for any supported service type.
Parameters (Default)
| Parameter | Type | Description |
|---|---|---|
key | String | Your API Key |
action | String | Must be add |
service | Integer | Service ID |
link | String | Link to target page / post |
quantity | Integer | Needed quantity |
runs | Integer | Optional (Drip-feed runs) |
interval | Integer | Optional (Drip-feed interval in minutes) |
Example JSON Response (Success)
{
"order": 104529
}
POST
action: status
3. Order Status & Multiple Orders
Check the status, start count, remains, and charge of single or multiple orders.
Parameters
| Parameter | Type | Description |
|---|---|---|
key | String | Your API Key |
action | String | Must be status |
order | Integer | Single Order ID (e.g. 104529) |
orders | String | Multiple 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
action: balance
4. User Balance
Fetch current account balance and currency code.
Parameters
| Parameter | Type | Description |
|---|---|---|
key | String | Your API Key |
action | String | Must be balance |
Example JSON Response
{
"balance": "1500.50",
"currency": "INR"
}