Enter yuh access data

Suggested languages

Ada langwij

API Link

https://pica-smm.com/api2/v2

POST

HTTP Method

JSON

Response format
User balance

key

Authorization key

action

balance
{
    "balance": "100.84292",
    "currency": "USD"
}
List a services

key

Authorization key

action

services
[
    {
        "service": 1448,
        "name": "Instagram Followers",
        "type": "Default",
        "category": "Instagram",
        "rate": "0.90",
        "min": "50",
        "max": "10000",
        "refill": true
    },
    {
        "service": 1452,
        "name": "Facebook Comments",
        "type": "Custom Comments",
        "category": "Facebook",
        "rate": "8",
        "min": "10",
        "max": "1500",
        "refill": false
    }
]
Add Order

key

Authorization key

action

add

service

Service ID

link

Post, page or profile link

quantity

Quantity required

interval (aptional)

Interval inna minutes
{
	"order": 23501
}
Order status

key

Authorization key

action

status

order

Order ID
{
    "charge": "0.27819",
    "start_count": "3572",
    "status": "Partial",
    "remains": "157",
    "currency": "USD"
}
Status a multiple orders

key

Authorization key

action

status

orders

Comma separated order IDs
{
    "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

key

Authorization key

action

refill

order

Order ID
{
    "refill": "1"
}
Refill status

key

Authorization key

action

refill_status

refill

Refill ID
{
    "status": "Completed"
}
Mek multiple refills

key

Authorization key

action

refill

orders

Comma separated order IDs
[
    {
        "order": 1,
        "refill": 1
    },
    {
        "order": 2,
        "refill": 2
    },
    {
        "order": 3,
        "refill": {
            "error": "Incorrect order ID"
        }
    }
]
Status a multiple refills

key

Authorization key

action

refill

orders

Comma separated order IDs
[
    {
        "refill": 1,
        "status": "Completed"
    },
    {
        "refill": 2,
        "status": "Rejected"
    },
    {
        "refill": 3,
        "status": {
            "error": "Refill not found"
        }
    }
]
Cancel one or more orders

key

Authorization key

action

cancel

orders

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