Inserisci i tuoi dati di accesso

Lingue suggerite

Altre lingue

Collegamento API

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

POST

Metodo HTTP

JSON

Formato di risposta
Saldo utente

key

Chiave di autorizzazione

action

balance
{
    "balance": "100.84292",
    "currency": "USD"
}
Elenco dei servizi

key

Chiave di autorizzazione

action

services
[
    {
        "service": 1448,
        "name": "Follower di Instagram",
        "type": "Default",
        "category": "Profilo utente",
        "rate": "0.90",
        "min": "50",
        "max": "10000",
        "refill": true
    },
    {
        "service": 1452,
        "name": "Commenti di Facebook",
        "type": "Custom Comments",
        "category": "Fai clic su Mi Piace",
        "rate": "8",
        "min": "10",
        "max": "1500",
        "refill": false
    }
]
Aggiungi ordine

key

Chiave di autorizzazione

action

add

service

ID del servizio

link

Link al post, alla pagina o al profilo

quantity

Quantità richiesta

interval (opzionale)

Intervallo in minuti
{
	"order": 23501
}
Stato dell'ordine

key

Chiave di autorizzazione

action

status

order

ID ordine
{
    "charge": "0.27819",
    "start_count": "3572",
    "status": "Partial",
    "remains": "157",
    "currency": "USD"
}
Stato di più ordini

key

Chiave di autorizzazione

action

status

orders

ID ordine separati da virgole
{
    "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"
    }
}
Crea ricarica

key

Chiave di autorizzazione

action

refill

order

ID ordine
{
    "refill": "1"
}
Stato di ricarica

key

Chiave di autorizzazione

action

refill_status

refill

Ricarica ID
{
    "status": "Completed"
}
Crea più ricariche

key

Chiave di autorizzazione

action

refill

orders

ID ordine separati da virgole
[
    {
        "order": 1,
        "refill": 1
    },
    {
        "order": 2,
        "refill": 2
    },
    {
        "order": 3,
        "refill": {
            "error": "Incorrect order ID"
        }
    }
]
Stato di più ricariche

key

Chiave di autorizzazione

action

refill

orders

ID ordine separati da virgole
[
    {
        "refill": 1,
        "status": "Completed"
    },
    {
        "refill": 2,
        "status": "Rejected"
    },
    {
        "refill": 3,
        "status": {
            "error": "Refill not found"
        }
    }
]
Annulla uno o più ordini

key

Chiave di autorizzazione

action

cancel

orders

ID ordine separati da virgole
[
    {
        "order": 9,
        "cancel": {
            "error": "Incorrect order ID"
        }
    },
    {
        "order": 2,
        "cancel": 1
    }
]