Loading...

Документация по API

Примечание: пожалуйста, внимательно ознакомьтесь с инструкциями API. Вы несете полную ответственность за те заказы, которые оформляете через API.

HTTP-метод POST
Формат ответа Json
API URL https://ismm.store/api/v1
Ключ API

Разместить новый заказ

Параметр Описание
key Your API key
action add
service Service ID
link Link to page
quantity Needed quantity
runs (optional) Runs to deliver
interval (optional) Interval in minutes
Параметр Описание
key Your API key
action add
service Service ID
link Link to page
Параметр Описание
key Your API key
action add
service Service ID
link Link to page
comments Comments list separated by \r\n or \n
Параметр Описание
key Your API key
action add
service Service ID
link Link to page
quantity Needed quantity
usernames Usernames list separated by \r\n or \n
hashtags Hashtags list separated by \r\n or \n
Параметр Описание
key Your API key
action add
service Service ID
link Link to page
usernames Usernames list separated by \r\n or \n
Параметр Описание
key Your API key
action add
service Service ID
link Link to page
quantity Needed quantity
hashtag Hashtag to scrape usernames from
Параметр Описание
key Your API key
action add
service Service ID
link Link to page
quantity Needed quantity
username URL to scrape followers from
Параметр Описание
key Your API key
action add
service Service ID
link Link to page
comments Comments list separated by \r\n or \n
Параметр Описание
key Your API key
action add
service Service ID
link Link to page
Параметр Описание
key Your API key
action add
service Service ID
link Link to page
quantity Needed quantity
username Username of the comment owner
Параметр Описание
key Your API key
action add
service Service ID
link Link to page
quantity Needed quantity
answer_number Answer number for the poll
Параметр Описание
key Your API key
action add
service Service ID
link Link to page
sub_min Minimum quantity per run
sub_max Maximum quantity per run
sub_posts Number of new posts
sub_old_posts Number of old posts
sub_delay Delay between runs in minutes

Пример ответа:

{
  "status": "success",
  "order": 32
}
            

Статус заказа

Параметр Описание
key Ваш ключ API
action status
order ID заказа

Пример ответа:

{
  "order": "32",
  "status": "pending",
  "charge": "0.0360",
  "start_count": "0",
  "remains": "0"
}
            

Статус нескольких заказов

Параметр Описание
key Ваш ключ API
action status
orders Идентификаторы заказа через запятую (данные массива)

Пример ответа:

  {
      "12": {
          "order": "12",
          "status": "processing",
          "charge": "1.2600",
          "start_count": "0",
          "remains": "0"
      },
      "2": "Incorrect order ID",
      "13": {
          "order": "13",
          "status": "pending",
          "charge": "0.6300",
          "start_count": "0",
          "remains": "0"
      }
  }
            

Список услуг

Параметр Описание
key Ваш ключ API
action services

Пример ответа:

[
  {
      "service": "5",
      "name": "Instagram Followers [15K] ",
      "category": "Instagram - Followers [Guaranteed/Refill] - Less Drops ⭐",
      "rate": "1.02",
      "min": "500",
      "max": "10000",
      "type": "default",
      "desc": "usernames",
      "dripfeed": true,
      "refill": true,
      "cancel": true
  },
  {
      "service": "9",
      "name": "Instagram Followers - Max 300k - No refill - 30-40k/Day",
      "category": "Instagram - Followers [Guaranteed/Refill] - Less Drops ⭐",
      "rate": "0.04",
      "min": "500",
      "max": "300000",
      "type": "default",
      "desc": "usernames",
      "dripfeed": true,
      "refill": false,
      "cancel": false
  }
]
    

Refill order

Параметр Описание
key Your API key
action refill
order Order ID

Пример ответа:

{
  "status": "success",
  "refill_id": 15,
  "message": "Refill request submitted successfully"
}
                    

Refill status

Параметр Описание
key Your API key
action refill_status
refill Refill ID

Пример ответа:

{
  "refill_id": 15,
  "status": "Completed",
  "start_count": 1000,
  "remains": 50
}
                    

Cancel order

Параметр Описание
key Your API key
action cancel
order Order ID

Пример ответа:

{
  "status": "success",
  "cancel_id": 8,
  "message": "Cancel request submitted successfully"
}
                    

Баланс

Параметр Описание
key Ваш ключ API
action balance

Пример ответа:

  {
      "status": "success",
      "balance": "0.03",
      "currency": "USD"
  }