API

Perfectpanel-compatible REST API. One endpoint, form-encoded POST requests, JSON responses.

HTTP MethodPOST
API URLhttps://your-domain/api/v2
Response formatJSON
API KeyYour account

Service list

ParametersDescription
keyYour API key
actionservices

Example response

[
  {
    "service":  1,
    "name":     "Followers",
    "type":     "Default",
    "category": "First Category",
    "rate":     "0.90",
    "min":      "50",
    "max":      "10000",
    "refill":   true,
    "cancel":   true
  }
]

Add order

Default

ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
runs optionalRuns to deliver
interval optionalInterval in minutes

Example response

{ "order": 23501 }

Package

ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page

SEO

ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
keywordsKeywords list

Custom Comments

ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
commentsComments list separated by \r\n or \n

Custom Comments Package

ParametersDescription
keyYour API key
actionadd
serviceService ID
usernameUsername
minQuantity min
maxQuantity max
delayDelay in minutes
posts optionalPosts
old_posts optionalOld posts
expiry optionalExpiry date. Format d/m/Y

Mentions with Hashtags

ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
usernamesUsernames
hashtagsHashtags

Mentions Custom List

ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
usernamesUsernames list separated by \r\n or \n

Mentions Hashtag

ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
hashtagHashtag

Mentions User Followers

ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
usernameUsername

Mentions Media Likers

ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
mediaMedia URL

Poll

ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
answer_numberAnswer number

Comment Replies

ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
usernameUsername
commentsComments list separated by \r\n or \n

Subscriptions

ParametersDescription
keyYour API key
actionadd
serviceService ID
usernameUsername
minQuantity min
maxQuantity max
delayDelay in minutes
posts optionalNew posts
old_posts optionalOld posts
expiry optionalExpiry date. Format d/m/Y

Invites from Groups

ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
groupsGroups list separated by \r\n or \n

Web Traffic

ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
countryCountry
deviceDevice
type_of_trafficType of traffic
google_keyword optionalGoogle keyword
referring_url optionalReferring URL
runs optionalRuns to deliver
interval optionalInterval in minutes

Order status

ParametersDescription
keyYour API key
actionstatus
orderOrder ID

Example response

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

Multiple orders status

ParametersDescription
keyYour API key
actionstatus
ordersOrder IDs (separated by a comma)

Example response

{
  "1": {
    "charge":      "0.27819",
    "start_count": "3572",
    "status":      "Partial",
    "remains":     "157",
    "currency":    "USD"
  },
  "10": { "error": "Incorrect order ID" }
}

Create refill

ParametersDescription
keyYour API key
actionrefill
orderOrder ID

Example response

{ "refill": "1" }

Create multiple refill

ParametersDescription
keyYour API key
actionrefill
ordersOrder IDs (separated by a comma)

Example response

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

Get refill status

ParametersDescription
keyYour API key
actionrefill_status
refillRefill ID

Example response

{ "status": "Completed" }

Get multiple refill status

ParametersDescription
keyYour API key
actionrefill_status
refillsRefill IDs (separated by a comma)

Example response

[
  { "refill": 1, "status": "Completed" },
  { "refill": 2, "status": "Rejected" }
]

Create cancel

ParametersDescription
keyYour API key
actioncancel
ordersOrder IDs (separated by a comma)

Example response

[
  { "order": 9, "cancel": { "error": "Incorrect order ID" } },
  { "order": 2, "cancel": 1 }
]

User balance

ParametersDescription
keyYour API key
actionbalance

Example response

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