API Documentation

API Information

HTTP Method: POST

API URL: Loading...

API Key: Get an API key on the Account page

Response Format: JSON

Service List

Retrieve all available services.

Parameters:

  • key: Your API key
  • action: `services`

Example Response:

[
  {
    "service": 1,
    "name": "Followers",
    "type": "Default",
    "category": "First Category",
    "rate": "0.90",
    "min": "50",
    "max": "10000",
    "refill": true,
    "cancel": true
  },
  {
    "service": 2,
    "name": "Comments",
    "type": "Custom Comments",
    "category": "Second Category",
    "rate": "8",
    "min": "10",
    "max": "1500",
    "refill": false,
    "cancel": true
  }
]

Add Order

Create a new order.

Parameters:

  • key: Your API key
  • action: `add`
  • service: Service ID
  • quantity: Number of units
  • link: Target link

Example Response:

{
  "order": 23501
}

Order Status

Check the status of an order.

Parameters:

  • key: Your API key
  • action: `status`
  • order: Order ID

Example Response:

{
  "charge": "0.27819",
  "start_count": "3572",
  "status": "Partial",
  "remains": "157",
  "currency": "₹"
}

Multiple Orders Status

Check multiple orders at once.

Parameters:

  • key: Your API key
  • action: `status`
  • orders: Comma-separated Order IDs

Example Response:

{
  "1": {
    "charge": "0.27819",
    "start_count": "3572",
    "status": "Partial",
    "remains": "157",
    "currency": "₹"
  },
  "10": { "error": "Incorrect order ID" },
  "100": {
    "charge": "1.44219",
    "start_count": "234",
    "status": "In progress",
    "remains": "10",
    "currency": "₹"
  }
}

Create Refill

Request a refill for an order.

Parameters:

  • key: Your API key
  • action: `refill`
  • order: Order ID

Example Response:

{
  "refill": "1"
}

Create Multiple Refill

Request refill for multiple orders.

Parameters:

  • key: Your API key
  • action: `refill`
  • orders: Multiple Order IDs

Example Response:

[
  { "order": 1, "refill": 1 },
  { "order": 2, "refill": 2 },
  { "order": 3, "refill": { "error": "Incorrect order ID" } }
]

Refill Status

Check refill status of an order.

Parameters:

  • key: Your API key
  • action: `refill_status`
  • refill: Refill ID

Example Response:

{
  "status": "Completed"
}

Multiple Refill Status

Check statuses for multiple refill IDs.

Parameters:

  • key: Your API key
  • action: `refill_status`
  • refills: Comma-separated refill IDs

Example Response:

[
  { "refill": 1, "status": "Completed" },
  { "refill": 2, "status": "Rejected" },
  { "refill": 3, "status": { "error": "Refill not found" } }
]

User Balance

Retrieve your current account balance.

Parameters:

  • key: Your API key
  • action: `balance`

Example Response:

{
  "balance": "100.84292",
  "currency": "₹"
}