Подключение API Profi-like
| API URL | https://api.profi-like.ru/v1 |
|---|---|
| Response format | JSON |
Service list
GET POST
| 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
},
]
User balance
GET POST
| PARAMETERS | DESCRIPTION |
|---|---|
| key | Your API key |
| action | balance |
| currency (optional) | RUB |
Example Response
{
"balance": "113.34691",
"currency": "USD"
}Order status
GET POST
| PARAMETERS | DESCRIPTION |
|---|---|
| key | Your API key |
| action | status |
| order | Order ID |
Example Response
{
"start_count": "3572",
"status": "Partial",
"currency": "USD"
}Multiple orders status
GET POST
| 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"
}
}Add order
POST
| PARAMETERS | DESCRIPTION |
|---|---|
| key | Your API key |
| action | add |
| service | Service ID |
| currency (optional, RUB by default) | Currency for order (RUB, USD) |
| link | Link to page |
| quantity | Needed quantity |
| runs (optional) | Runs to deliver |
| interval (optional) | Interval in minutes |
Example Response
{
"order": 23501
}