HTTP Method POST
API URL https://socialreseller.org/api/v2
API Key Your API key
Response format JSON

Services List

{
  "key": "your_api_key",
  "action": "services"
}
[
  {
    "service": 1,
    "name": "Followers",
    "type": "Default",
    "category": "First Category",
    "rate": "0.90",
    "min": "50",
    "max": "10000",
    "refill": true,
    "cancel": true
  }
]

Create Order

{
  "key": "your_api_key",
  "action": "add",
  "service": 1,
  "link": "https://example.com/post/123",
  "quantity": 1000
}
{
  "order": 23501
}

Order Status

{
  "key": "your_api_key",
  "action": "status",
  "order": 12345
}
{
  "charge": "0.27819",
  "start_count": "3572",
  "status": "Partial",
  "remains": "157",
  "currency": "USD"
}

Bulk Order Status

{
  "key": "your_api_key",
  "action": "status",
  "orders": "123,124,125"
}
{
  "123": {
    "charge": "0.27819",
    "start_count": "3572",
    "status": "Partial",
    "remains": "157",
    "currency": "USD"
  },
  "124": {
    "error": "Incorrect order ID"
  }
}

Balance Check

{
  "key": "your_api_key",
  "action": "balance"
}
{
  "balance": "100.84292",
  "currency": "USD"
}