Home
Services
Orders
Account
Libgram | API Documentation
LIBGRAM.
LIBGRAM API
Copied to clipboard!
Developer Integration v2

Automate with API

Seamlessly connect your reseller platform or website directly to Libgram's service network. High performance, 99.98% uptime, and real-time execution.

API Authentication

All API calls require standard POST HTTP requests using your secret account API Key. You can view or reset your key inside your user dashboard.

Key: YOUR_SECRET_API_KEY

HTTP Request Endpoint

POST https://libgram.com/api/v2 HTTPS ONLY

1. Create New Order

action: add
Parameter Type Description
keyStringYour API Key
actionStringSet to add
serviceIntegerService ID Code
linkStringProfile URL or Post Link
quantityIntegerQuantity requested
Example JSON Response
{
  "order": 105422
}

2. Check Order Status

action: status

Send Parameters: key, action (status), and order (Order ID).

Example JSON Response
{
  "charge": "12.50",
  "start_count": "1420",
  "status": "In progress",
  "remains": "80",
  "currency": "INR"
}

3. Fetch Service List

action: services
Example JSON Response
[
  {
    "service": 101,
    "name": "Instagram Followers [Non Drop]",
    "type": "Default",
    "category": "Instagram Followers",
    "rate": "45.00",
    "min": "100",
 max": "50000"
  }
]

4. Check Account Balance

action: balance
Example JSON Response
{
  "balance": "1450.80",
  "currency": "INR"
}