Voer uw toegangsgegevens in

Voorgestelde talen

Andere talen

API-koppeling

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

POST

HTTP-methode

JSON

Reactieformaat
Gebruikersbalans

key

Autorisatiesleutel

action

balance
{
    "balance": "100.84292",
    "currency": "USD"
}
Lijst met diensten

key

Autorisatiesleutel

action

services
[
    {
        "service": 1448,
        "name": "Instagram-volgers",
        "type": "Default",
        "category": "Instagram",
        "rate": "0.90",
        "min": "50",
        "max": "10000",
        "refill": true
    },
    {
        "service": 1452,
        "name": "Facebook-reacties",
        "type": "Custom Comments",
        "category": "Facebook",
        "rate": "8",
        "min": "10",
        "max": "1500",
        "refill": false
    }
]
Bestelling toevoegen

key

Autorisatiesleutel

action

add

service

Service-ID

link

Link naar bericht, pagina of profiel

quantity

Benodigde hoeveelheid

interval (optioneel)

Interval in minuten
{
	"order": 23501
}
Bestelstatus

key

Autorisatiesleutel

action

status

order

Bestel-ID
{
    "charge": "0.27819",
    "start_count": "3572",
    "status": "Partial",
    "remains": "157",
    "currency": "USD"
}
Status van meerdere bestellingen

key

Autorisatiesleutel

action

status

orders

Door komma's gescheiden order-ID's
{
    "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"
    }
}
Vulling aanmaken

key

Autorisatiesleutel

action

refill

order

Bestel-ID
{
    "refill": "1"
}
Bijvulstatus

key

Autorisatiesleutel

action

refill_status

refill

Navul-ID
{
    "status": "Completed"
}
Meerdere vullingen aanmaken

key

Autorisatiesleutel

action

refill

orders

Door komma's gescheiden order-ID's
[
    {
        "order": 1,
        "refill": 1
    },
    {
        "order": 2,
        "refill": 2
    },
    {
        "order": 3,
        "refill": {
            "error": "Incorrect order ID"
        }
    }
]
Status van meerdere vullingen

key

Autorisatiesleutel

action

refill

orders

Door komma's gescheiden order-ID's
[
    {
        "refill": 1,
        "status": "Completed"
    },
    {
        "refill": 2,
        "status": "Rejected"
    },
    {
        "refill": 3,
        "status": {
            "error": "Refill not found"
        }
    }
]
Annuleer één of meerdere bestellingen

key

Autorisatiesleutel

action

cancel

orders

Door komma's gescheiden order-ID's
[
    {
        "order": 9,
        "cancel": {
            "error": "Incorrect order ID"
        }
    },
    {
        "order": 2,
        "cancel": 1
    }
]