API Docs


API Information

HTTP Method GET / POST
API URL https://instabro.top/api
API TOKEN https://instabro.top/profile
Response format JSON

Test request

Name Param Value Description
API TOKEN [key] string Secret key for using our api
ACTION [action] string What do you want to do
Example :
https://instabro.top/api?action=test&key=ykWzupEOHSywYi6WrGmj6o98pp5Eq7fiw9aDk7U6ooxFhtLjW02aL6EbZ2g4
Form :
<form action="https://instabro.top/api" method="POST">
    <input type="hidden" name="token" value="ykWzupEOHSywYi6WrGmj6o98pp5Eq7fiw9aDk7U6ooxFhtLjW02aL6EbZ2g4">
    <input type="hidden" name="action" value="test">
    <input type="submit">
</form>
                    
Response :
{
    "message":"Your key is valid"
}

User Balance

Name Param Value Description
API TOKEN [key] string Secret key for using our api
ACTION [action] string What do you want to do
Example :
https://instabro.top/api?action=balance&key=ykWzupEOHSywYi6WrGmj6o98pp5Eq7fiw9aDk7U6ooxFhtL
Form :
<form action="https://instabro.top/api" method="POST">
    <input type="hidden" name="token" value="ykWzupEOHSywYi6WrGmj6o98pp5Eq7fiw9aDk7U6ooxFhtL">
    <input type="hidden" name="action" value="balance">
    <input type="submit">
</form>
                    
Response :
{
    value: 52132.55,
    currency: "USD",
    balance: "USD 52,132.55"
}

Order

Name Param Value Description
API TOKEN [key] string Secret key for using our api
ACTION [action] string What do you want to do
Service ID [service] integer The service id you can find on Services page
Link [link] string Link to your profile or article in social network
Quantity [quantity] integer Count of orders this service
Feature posts [feature_posts] integer/empty Number of future publications
Comments [comments] string/empty List of comments. Example:
comment1
comment2
comment3
...
            
Example :
https://instabro.top/api?action=add&key=ykWzupEOHSywYi6WrGmj6o98pp5Eq7fiw9aDk7U6ooxFhtLjW02aL6EbZ2g4&service=1&link=https%3A%2F%2Fwww.instagram.com%2Faskldjfhkjashdf&quantity=1000&feature_posts=&comments=
Form :
<form action="https://instabro.top/api" method="POST">
    <input type="hidden" name="token" value="ykWzupEOHSywYi6WrGmj6o98pp5Eq7fiw9aDk7U6ooxFhtLjW02aL6EbZ2g4">
    <input type="hidden" name="action" value="add">
    <input type="text" name="service" placeholder="service">
    <input type="text" name="link" placeholder="link">
    <input type="text" name="quantity" placeholder="quantity">
    <input type="text" name="feature_posts" placeholder="feature_posts">
    <textarea name="comments">
        comment1
        comment2
        comment3
    <textarea>
    <input type="submit">
</form>
                    
Response :
{
    "order_id": 54865748
}

Order status

Name Param Value Description
API TOKEN [key] string Secret key for using our api
ACTION [action] string What do you want to do
Order ID [order] integer -
Example :
https://instabro.top/api?action=status&key=ykWzupEOHSywYi6WrGmj6o98pp5Eq7fiw9aDk7U6ooxFhtLjW02aL6EbZ2g4&order=1111111
Form :
<form action="https://instabro.top/api" method="POST">
    <input type="hidden" name="token" value="ykWzupEOHSywYi6WrGmj6o98pp5Eq7fiw9aDk7U6ooxFhtLjW02aL6EbZ2g4">
    <input type="hidden" name="action" value="status">
    <input type="text" name="order" placeholder="58486585">
    <input type="submit">
</form>
                    
Response :
{
    order: "98979748",
    service: 257,
    service_name: "Service 1",
    category: 23,
    category_name: "Category 1",
    link: "https://www.instagram.com/p/asjdlkfjlaskdlfasdjfk/",
    count: 100,
    start_count: 3,
    remains: 0,
    status: "In Progress",
    charge: 0.01,
    chargeView: "USD 0.01",
    currency: "USD",
    error_des: null,
    img: "link to img",
    created_at: "2019-12-18 22:32:02"
}

Service list

Name Param Value Description
API TOKEN [key] string Secret key for using our api
ACTION [action] string What do you want to do
Example :
https://instabro.top/api?action=services&key=ykWzupEOHSywYi6WrGmj6o98pp5Eq7fiw9aDk7U6ooxFhtLjW02aL6EbZ2g4
Form :
<form action="https://instabro.top/api" method="POST">
    <input type="hidden" name="token" value="ykWzupEOHSywYi6WrGmj6o98pp5Eq7fiw9aDk7U6ooxFhtLjW02aL6EbZ2g4">
    <input type="hidden" name="action" value="services">
    <input type="submit">
</form>
                    
Response :
[
    {
        service: 1,
        name: "Test service 1",
        type: "Default",
        category: "Test category 1",
        rate: 15.23,
        currency: "USD",
        rateView: "USD 6,000.00",
        min: 4,
        max: 100
    },
    {
        service: 2,
        name: "Test service 2",
        type: "Default",
        category: "Test category 2",
        rate: 0.23,
        currency: "RUB",
        rateView: "RUB 6,000.00",
        min: 4,
        max: 100
    }
]

Orders statuses

Status Color Ico
Wait
In Progress
Processing
Success
Partial
Cancel
Process
PRIORITY

Errors

Code Type Error
419 Unauthorized
{
    "error":"is unauthorized"
}
422 Validation
{
    "error":"is required"
}
402 Payment Required
{
    "error":"Not enough funds on balance"
}