アクセスデータを入力してください

推奨言語

その他の言語

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": "インスタグラム",
        "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"
        }
    }
]
1つ以上の注文をキャンセルする

key

認証キー

action

cancel

orders

カンマ区切りの注文ID
[
    {
        "order": 9,
        "cancel": {
            "error": "Incorrect order ID"
        }
    },
    {
        "order": 2,
        "cancel": 1
    }
]