Loading...

API REQUESTS AND RESPONSES

Add order
  1. key
    1. Your API key specified in your account profile.
  2. action
    1. create
  3. service
    1. ID of the desired type of service, specified in the price list.
  4. quantity
    1. How much you want to order. Not required if comments.
  5. link
    1. Link to where you order service (any format).
  6. comments (optional)
    1. Comments listed with \n
  7. username (optional)
    1. Login of the comment author.

RESPONSE

An example of a response with an order number when requesting via API.
Response in JSON format.

{"order":"300450291","charge":0.121}

For Perfect Panel:
Provider URL: nakrutka.com
API key: Sign up

Some services are also available on our separate perfect panel - nakrutka.app

Order status
  1. key
    1. Your API key specified in your account profile.
  2. action
    1. status
  3. order
    1. The order ID specified in the list of your orders.
    2. If the order is not added through your key, then you will not be able to check it.

RESPONSE

An example of a response with an order number when requesting via API.
Response in JSON format.

{
"quantity":"200",
"link":"https://www.instagram.com/jaholper/",
"charge":"0.15",
"service":"20",
"remains":"160",
"status":"Partial",
"start_count":"1400",
"cancel_info":"Invalid link.",
"currency":"USD"
}

Multiple orders status
  1. key
    1. Your API key specified in your account profile.
  2. action
    1. status
  3. orders
    1. Order IDs separated by commas.
    2. No more than 1000 orders can be sent at a time.

RESPONSE

An example of a response with an order number when requesting via API.
Response in JSON format.

{
  "301456340":{
     "charge":"0.15",
     "remains":"0",
     "status":"Completed",
     "start_count":"150",
     "currency":"USD"
  },
  "300450291":{
     "charge":"2",
     "remains":"100",
     "status":"In progress",
     "start_count":"16790",
     "currency":"USD"
  }
}

Order cancellation
  1. key
    1. Your API key specified in your account profile.
  2. action
    1. cancel
  3. order
    1. The order ID specified in the list of your orders.

RESPONSE

An example of a response with an order number when requesting via API.
Response in JSON format.

{"success":true}

Multiple order cancellations
  1. key
    1. Your API key specified in your account settings.
  2. action
    1. cancel
  3. orders
    1. Order IDs separated by commas in GET or POST.
    2. No more than 1000 orders at a time.

Response

Example of our API response for multiple order cancellations.
Response in JSON.

{"success":true}

Запрос докрутки заказа
  1. key
    1. Ваш ключ API, указанный в настройках аккаунта.
  2. action
    1. refill
  3. order
    1. ID заказа, указанный в списке ваших заказов.

Ответ

Пример ответа нашего API при запросе докрутки.
Отклик в формате JSON.

{"success":true}

Проверка баланса
  1. key
    1. Ваш ключ API, указанный в настройках аккаунта.
  2. action
    1. balance

Ответ

Пример ответа для проверки баланса от нашего API.
Отклик в формате JSON.

{
"balance":"151082.1253992",
"currency":"USD"
}

List of services
  1. key
    1. Your API key specified in your account settings.
  2. action
    1. services

Response

Example of a response with a list of services.
Response in JSON.

[{
"service":"32",
"name":"Instagram Likes [No drop]",
"type":"Default",
"refill":true,
"category":"4",
"rate":"36",
"min":"10",
"max":"5000",
"drops":"3",
"speed_per_hour":"1554",
"max_done_count_day":"24577",
"limit":"300K (100K per day)",
"queue_time_minutes":0,
"cancel":true
}]

Multiple order creation
  1. key
    1. Тип: GET
    2. Ваш ключ API, указанный в настройках аккаунта.
  2. action
    1. Тип: GET
    2. massorder
  3. orders
    1. Тип: POST
    2. Максимум 500 заказов в одном запросе.
    3. Пример тела в формате JSON:
    4. [{
      "service":"9",
      "order_id":"1",
      "quantity":100,
      "link":"https:\/\/www.instagram.com\/jaholper\/"
      },
      {
      "service":"9",
      "order_id":"2",
      "quantity":100,
      "link":"https:\/\/www.instagram.com\/jaholper\/"
      }]

Response

Response example for multiple order additions.
Response in JSON.

[{
"order_id": "1",
"order": "333250665",
"charge": 1.1
},
{
"order_id": "2",
"Error": "Not enough funds."
}]