輸入你嘅存取資料

建議嘅語言

其他語言

API 連結

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

POST

HTTP 方法

JSON

回應格式
用戶餘額

key

授權密鑰

action

balance
{
    "balance": "100.84292",
    "currency": "USD"
}
服務清單

key

授權密鑰

action

services
[
    {
        "service": 1448,
        "name": "Instagram 追蹤者",
        "type": "Default",
        "category": "Instagram",
        "rate": "0.90",
        "min": "50",
        "max": "10000",
        "refill": true
    },
    {
        "service": 1452,
        "name": "Facebook 留言",
        "type": "Custom Comments",
        "category": "臉書",
        "rate": "8",
        "min": "10",
        "max": "1500",
        "refill": false
    }
]
加入訂單

key

授權密鑰

action

add

service

服務 ID

link

帖子、頁面或者個人檔案連結

quantity

所需數量

interval (可選嘅)

以分鐘計嘅間隔
{
	"order": 23501
}
訂單狀態

key

授權密鑰

action

status

order

訂單 ID
{
    "charge": "0.27819",
    "start_count": "3572",
    "status": "Partial",
    "remains": "157",
    "currency": "USD"
}
多個訂單嘅狀態

key

授權密鑰

action

status

orders

逗號分隔嘅訂單 ID
{
    "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"
    }
}
建立補充裝

key

授權密鑰

action

refill

order

訂單 ID
{
    "refill": "1"
}
補充狀態

key

授權密鑰

action

refill_status

refill

補充 ID
{
    "status": "Completed"
}
建立多個補充裝

key

授權密鑰

action

refill

orders

逗號分隔嘅訂單 ID
[
    {
        "order": 1,
        "refill": 1
    },
    {
        "order": 2,
        "refill": 2
    },
    {
        "order": 3,
        "refill": {
            "error": "Incorrect order ID"
        }
    }
]
多次補充嘅狀態

key

授權密鑰

action

refill

orders

逗號分隔嘅訂單 ID
[
    {
        "refill": 1,
        "status": "Completed"
    },
    {
        "refill": 2,
        "status": "Rejected"
    },
    {
        "refill": 3,
        "status": {
            "error": "Refill not found"
        }
    }
]
取消一個或者多個訂單

key

授權密鑰

action

cancel

orders

逗號分隔嘅訂單 ID
[
    {
        "order": 9,
        "cancel": {
            "error": "Incorrect order ID"
        }
    },
    {
        "order": 2,
        "cancel": 1
    }
]