logo

API Documentation

General Information

HTTP MethodPOST
API URLhttps://smmrents.com/api/v2
API KeyGet an API key on the Account page
Response formatJSON

Service List

ParametersDescription
keyYour API key
actionservices
Example Response:
                                    [
                                        {
                                            "service": 2,
                                            "name": "Followers",
                                            "category": "First Category",
                                            "type": "Default",
                                            "rate": "0.73",
                                            "min": "100",
                                            "max": "10000",
                                            "dripfeed": false,
                                            "refill": false,
                                            "cancel": false,
                                            "description": "-"
                                        },
                                        {
                                            "service": 2,
                                            "name": "Comments",
                                            "type": "Custom Comments",
                                            "category": "Second Category",
                                            "rate": "12",
                                            "min": "10",
                                            "max": "2500",
                                            "refill": false,
                                            "cancel": true,
                                            "description": "-"
                                        }
                                    ]
                                

Add Order

  • Default Package
  • Custom Comments
  • Mentions
  • Mentions with Hashtags
  • Mentions Custom List
  • Mentions Hashtag
  • Mentions User Followers
  • Mentions Media Likers
  • Poll
  • Comment Replies
  • Subscriptions
ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
runs (optional)Runs to deliver
interval (optional)Interval in minutes
ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
commentsComments list separated by \r\n or \n
ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
usernamesUsernames list separated by \r\n or \n
ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
usernamesUsernames list separated by \r\n or \n
hashtagsHashtags list separated by \r\n or \n
ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
usernamesUsernames list separated by \r\n or \n
ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
hashtagHashtag to scrape usernames from
ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
usernameURL to scrape followers from
ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
mediaURL to scrape likers from
ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
questionPoll question
answersAnswers list separated by \r\n or \n
ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
commentsComments list separated by \r\n or \n
ParametersDescription
keyYour API key
actionadd
serviceService ID
usernameUsername
minQuantity min
maxQuantity max
posts (optional)Limit the number of new (future) posts
old_posts (optional)Number of existing posts to be parsed
delayDelay in minutes (0, 5, 10, 15, 30, 60, 90, ...)
expiry (optional)Expiry date (Format: d/m/Y)
Example Response:
{
                                      "order": 23501
                                  }

Order Status

ParametersDescription
keyYour API key
actionstatus
orderOrder ID
Example Response:
                                {
                                    "charge": "0.65788",
                                    "start_count": "12",
                                    "status": "Pending",
                                    "remains": "200",
                                    "currency": "EUR"
                                }
                                

Multiple Orders Status

ParametersDescription
keyYour API key
actionstatus
ordersOrder IDs (separated by a comma, up to 100 IDs)
Example Response:
                                {
                                    "1": {
                                        "charge": "1.03841045",
                                        "start_count": "1",
                                        "status": "In progress",
                                        "remains": "287",
                                        "currency": "EUR"
                                    },
                                    "10": {
                                        "charge": "0.657880205",
                                        "start_count": "12",
                                        "status": "Pending",
                                        "remains": "23",
                                        "currency": "EUR"
                                    },
                                    "100": {
                                        "error": "Incorrect order ID"
                                    }
                                }
                                

Create Refill

ParametersDescription
keyYour API key
actionrefill
orderOrder ID
Example Response:
                                    {
                                        "order": "12",
                                        "refill": "1",
                                        "message": "Your refill request has been received, please wait."
                                    }
                                

Create Multiple Refill

ParametersDescription
keyYour API key
actionrefill
ordersOrder IDs (separated by a comma, up to 100 IDs)
Example Response:
                                [
                                    {
                                        "order": 1,
                                        "refill": 1,
                                        "message": "Your refill request has been received, please wait."
                                    },
                                    {
                                        "order": 2,
                                        "refill": 2,
                                        "message": "Your refill request has been received, please wait."
                                    },
                                    {
                                        "order": 3,
                                        "refill": {
                                            "error": "Order cannot be refilled"
                                        },
                                        "message": "Order cannot be refilled"
                                    }
                                ]
                                

Get Refill Status

ParametersDescription
keyYour API key
actionrefill_status
refillRefill ID
Example Response:
                                    {
                                        "refill": 2,
                                        "status": "Completed"
                                    }
                                

Get Multiple Refill Status

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

Create Cancel

ParametersDescription
keyYour API key
actioncancel
ordersOrder IDs (separated by a comma, up to 100 IDs)
Example Response:
                                [
                                    {
                                        "order": 9,
                                        "cancel": {
                                            "error": "Incorrect order ID"
                                        }
                                    },
                                    {
                                        "order": 2,
                                        "cancel": "Your cancellation request has been received."
                                    }
                                ]
                                

User Balance

ParametersDescription
keyYour API key
actionbalance
Example Response:
                                    {
                                        "balance": "128.60633",
                                        "currency": "EUR"
                                    }