GROWLIKER / DEVELOPERS

Build with GrowLiker API.

Your reference for services, orders, refills and account balance.

POST requestsJSON responses
HTTP METHODPOST
API ENDPOINThttps://fansfollower.com/api/v2
RESPONSE FORMATJSON
Your API key Show Hide

Manage or generate your API key from Settings.

Open API Settings
01

Service list

POST
Parameters Description
key Your API key
action services
Example response JSON
[

    {

        "service": 1,

        "name": "Followers",

        "type": "Default",

        "category": "First Category",

        "rate": "0.90",

        "min": "50",

        "max": "10000"

    },

    {

        "service": 2,

        "name": "Comments",

        "type": "Custom Comments",

        "category": "Second Category",

        "rate": "8",

        "min": "10",

        "max": "1500"

    }

]
02

Add order

POST
Parameters Description
key Your API key
action add
service Service ID
url Link to page
quantity Needed quantity
comments (optional) Comments list (encoded)
order_refference (optional) / runs (optional) Runs to deliver
interval (optional) Interval in minutes
Example response JSON
{

    "charge": "0.27819",

    "start_count": "3572",

    "status": "Partial",

    "remains": "157",

    "currency": "USD"

}
03

Order status

POST
Parameters Description
key Your API key
action status
order Order ID
Example response JSON
{

    "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"

    }

}
04

Multiple orders status

POST
Parameters Description
key Your API key
action status
orders Order IDs separated by comma(100 orders at once)
Example response JSON
{

    "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"

    }

}
05

Create refill

POST
Parameters Description
key Your API key
action refill
order Order ID
Example response JSON
               {
                    "refill": "1"
                }
                            
06

Get refill status

POST
Parameters Description
key Your API key
action refill_status
refill Refill ID
Example response JSON
               {
                    "status": "Completed"
                }
                            
07

User balance

POST
Parameters Description
key Your API key
action balance
Example response JSON
               {
                    "balance": "100.84292",
                    "currency": "USD"
                }