API Reference

API URL https://api.profi-like.ru/v1
Response format JSON

GET Service list

PARAMETERS DESCRIPTION
key Your API key
action services
Example Response
[
  {
    "service": 80,
    "name": "Fast Views 📸",
    "type": "Default",
    "category": "Instagram",
    "rate": "0.06",
    "min": 1000,
    "max": 1000000
  },
  {
    "service": 84,
    "name": "Top Likes 🔝",
    "type": "Default",
    "category": "Instagram",
    "rate": "1.14",
    "min": 50,
    "max": 1000
  },
]

GET User balance

PARAMETERS DESCRIPTION
key Your API key
action balance
Example Response
{
  "balance": "113.34691",
  "currency": "USD"
}

GET Order status

PARAMETERS DESCRIPTION
key Your API key
action status
order Order ID
Example Response
{
  "start_count": "3572",
  "status": "Partial",
  "currency": "USD"
}

GET Multiple orders status

PARAMETERS DESCRIPTION
key Your API key
action status
orders Order IDs separated by comma
Example Response
{
  "1": {
    "start_count": "3572",
    "status": "Partial",
    "currency": "USD"
  },
  "10": {
    "error": "Incorrect order ID"
  },
  "100": {
    "start_count": "234",
    "status": "In progress",
    "currency": "USD"
  }
}

POST Add order

PARAMETERS DESCRIPTION
key Your API key
action add
service Service ID
Example Response
{
  "order": 23501
}