DASHBOARD API DOCUMENTATION

Developer & Reseller API (v2)

Connect your custom script, WordPress plugin, or reseller panel directly to our high-speed API.

API Overview

HTTP Method POST
API Endpoint URL https://giantpanel.com//api/v2
Response Format JSON

1. Service List (action: services)

Returns the list of all available services, IDs, rates, minimum, and maximum order limits.

Parameter Type Description
key string Your API Key
action string services
Example Response
[ { "service": 2665, "name": "YouTube Likes | Max 100K | Instant", "type": "Default", "category": "YouTube Likes", "rate": "0.15", "min": 10, "max": 100000, "refill": true, "cancel": true } ]

2. Add Order (action: add)

Submit a new social media order directly into the automation queue.

Parameter Type Description
key string Your API Key
action string add
service integer Service ID (from service list)
link string Link to the public post or profile
quantity integer Number of units to order
Example Success Response
{ "order": 128491 }

3. Order Status (action: status)

Check current execution status, start count, and remaining count of an order.

Parameter Type Description
key string Your API Key
action string status
order integer Order ID returned when created
Example Response
{ "charge": "0.1500", "start_count": "1420", "status": "Completed", "remains": "0", "currency": "USD" }

4. User Balance (action: balance)

Retrieve your current available wallet balance and currency.

Parameter Type Description
key string Your API Key
action string balance
Example Response
{ "balance": "9985.74", "currency": "INR" }