💬 Ask BoostlySMM AI
BoostlySMM AI
Online • Powered by AI
Top Services
Recommended
Music List
Link Fixer
Rules
Guide
Ticket
Owner
API Documentation v2
Integrate and automate orders using our REST API
HTTP Method
POST
API URL
https://boostlysmm.com/api/v2
Response Format
JSON

Service List

action: services
ParameterDescription
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
  },
  {
    "service": 2,
    "name": "Comments",
    "type": "Custom Comments",
    "category": "Second Category",
    "rate": "8",
    "min": "10",
    "max": "1500",
    "refill": false,
    "cancel": true
  }
]

Add Order

action: add
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
runsoptionalRuns to deliver
intervaloptionalInterval in minutes
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
keywordsKeywords list separated by \r\n or \n
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
commentsComments list separated by \r\n or \n
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
usernamesUsernames list separated by \r\n or \n
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
hashtagHashtag to scrape usernames from
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
usernameURL to scrape followers from
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
mediaMedia URL to scrape likers from
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
commentsComments list separated by \r\n or \n
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
answer_numberAnswer number of the poll
ParameterDescription
keyYour API key
actionadd
serviceService ID
usernameUsername
minQuantity min
maxQuantity max
postsoptionalLimit the number of new future posts to parse. If not set, subscription is unlimited.
old_postsoptionalNumber of existing posts to parse and create orders for.
delayDelay in minutes. Values: 0, 5, 10, 15, 30, 60, 90, 120, 150, 180, 210, 240, 270, 300, 360, 420, 480, 540, 600
expiryoptionalExpiry date — format: d/m/Y
Example Response
{
  "order": 23501
}

Order Status

action: status
ParameterDescription
keyYour API key
actionstatus
orderOrder ID
Example Response
{
  "charge": "0.27819",
  "start_count": "3572",
  "status": "Partial",
  "remains": "157",
  "currency": "USD"
}

Multiple Orders Status

action: status
ParameterDescription
keyYour API key
actionstatus
ordersOrder IDs separated by comma (up to 100)
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

action: refill
ParameterDescription
keyYour API key
actionrefill
orderOrder ID
Example Response
{ "refill": "1" }

Create Multiple Refill

action: refill
ParameterDescription
keyYour API key
actionrefill
ordersOrder IDs separated by comma (up to 100)
Example Response
[
  { "order": 1, "refill": 1 },
  { "order": 2, "refill": 2 },
  { "order": 3, "refill": { "error": "Incorrect order ID" } }
]

Get Refill Status

action: refill_status
ParameterDescription
keyYour API key
actionrefill_status
refillRefill ID
Example Response
{ "status": "Completed" }

Get Multiple Refill Status

action: refill_status
ParameterDescription
keyYour API key
actionrefill_status
refillsRefill IDs separated by comma (up to 100)
Example Response
[
  { "refill": 1, "status": "Completed" },
  { "refill": 2, "status": "Rejected" },
  { "refill": 3, "status": { "error": "Refill not found" } }
]

User Balance

action: balance
ParameterDescription
keyYour API key
actionbalance
Example Response
{
  "balance": "100.84292",
  "currency": "USD"
}