API Documentation

HTTP Method POST
API URL https://rental.thehindustanpanel.com/api/v2
Return Format JSON
Content Type application/x-www-form-urlencoded

Service List

Parameter Explanation
key Your API Key
action services
Sample Request
POST https://rental.thehindustanpanel.com/api/v2

key=YOUR_API_KEY
&action=services
Sample Return
[
    {
        "service": 1,
        "name": "Instagram Followers",
        "type": "Default",
        "category": "Instagram Followers",
        "rate": "0.90",
        "min": 50,
        "max": 100000,
        "dripfeed": false,
        "refill": true,
        "cancel": true,
        "description": "High quality followers",
        "average_time": 120
    }
]

Service Response Fields

Field Type Explanation
service integer / string Unique Service ID
name string Service name
type string Service type
category string Service category
rate string Service price/rate
min integer / string Minimum order quantity
max integer / string Maximum order quantity
dripfeed boolean Whether drip-feed is supported
refill boolean Whether refill is supported
cancel boolean Whether cancellation is supported
description string / null Service description
average_time integer / string Average completion time

New Order

Select the service type below to view the required parameters and request format.
Parameter Explanation
Request



                                    
Sample Return
{
    "order": 23501
}

Order Status

Parameter Explanation
key Your API Key
action status
order Order ID
POST https://rental.thehindustanpanel.com/api/v2

key=YOUR_API_KEY
&action=status
&order=23501
Sample Return
{
    "charge": "11.456",
    "start_count": "3572",
    "status": "Partial",
    "remains": "157",
    "currency": "INR"
}

Multiple Order Status

Parameter Explanation
key Your API Key
action status
orders Order IDs separated by a comma, up to 100 IDs
POST https://rental.thehindustanpanel.com/api/v2

key=YOUR_API_KEY
&action=status
&orders=23501,23502,23503
Example Response
{
    "1": {
        "charge": "0.27819",
        "start_count": "3572",
        "status": "Partial",
        "remains": "157",
        "currency": "USD"
    },
    "10": {
        "error": "Incorrect order ID"
    },
    "100": {
        "charge": "1.44219",
        "start_count": "234",
        "status": "In progress",
        "remains": "10",
        "currency": "USD"
    }
}

Create Refill

Parameter Description
keyYour API key
actionrefill
orderOrder ID
POST https://rental.thehindustanpanel.com/api/v2

key=YOUR_API_KEY
&action=refill
&order=23501
Example Response
{
    "refill": "1"
}

Create Multiple Refills

Parameter Description
keyYour API key
actionrefill
ordersOrder IDs separated by a comma, up to 100 IDs
POST https://rental.thehindustanpanel.com/api/v2

key=YOUR_API_KEY
&action=refill
&orders=1,2,3
Example Response
[
    {
        "order": 1,
        "refill": 1
    },
    {
        "order": 2,
        "refill": 2
    },
    {
        "order": 3,
        "refill": {
            "error": "Incorrect order ID"
        }
    }
]

Get Refill Status

Parameter Description
keyYour API key
actionrefill_status
refillRefill ID
POST https://rental.thehindustanpanel.com/api/v2

key=YOUR_API_KEY
&action=refill_status
&refill=1
Example Response
{
    "status": "Completed"
}

Get Multiple Refill Status

Parameter Description
keyYour API key
actionrefill_status
refillsRefill IDs separated by a comma, up to 100 IDs
POST https://rental.thehindustanpanel.com/api/v2

key=YOUR_API_KEY
&action=refill_status
&refills=1,2,3
Example Response
[
    {
        "refill": 1,
        "status": "Completed"
    },
    {
        "refill": 2,
        "status": "Rejected"
    },
    {
        "refill": 3,
        "status": {
            "error": "Refill not found"
        }
    }
]

Create Cancel

Parameter Description
keyYour API key
actioncancel
ordersOrder IDs separated by a comma, up to 100 IDs
POST https://rental.thehindustanpanel.com/api/v2

key=YOUR_API_KEY
&action=cancel
&orders=9,2
Example Response
[
    {
        "order": 9,
        "cancel": {
            "error": "Incorrect order ID"
        }
    },
    {
        "order": 2,
        "cancel": 1
    }
]

User Balance

Parameter Explanation
key Your API Key
action balance
POST https://rental.thehindustanpanel.com/api/v2

key=YOUR_API_KEY
&action=balance
Sample Return
{
    "balance": "100.84292",
    "currency": "USD"
}
Sample PHP File