输入您的访问数据

建议语言

其他语言

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": "Facebook",
        "rate": "8",
        "min": "10",
        "max": "1500",
        "refill": false
    }
]
添加订单

key

授权密钥

action

add

service

服务 ID

link

帖子、页面或个人资料链接

quantity

所需数量

interval (选修的)

间隔(分钟)
{
	"order": 23501
}
订单状态

key

授权密钥

action

status

order

订单编号
{
    "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

订单编号
{
    "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
    }
]