{
  "openapi": "3.0.1",
  "info": {
    "title": "Instagram Bulk DM 2.O",
    "description": "A high-performance Instagram DM bot for bulk outreach. Send unlimited DMs safely with multi-account rotation, per-account limits, session recovery, SpinTax randomization, smart retries, and a looping engine to reach your full target list—ideal for marketing & lead generation.",
    "version": "0.0",
    "x-build-id": "NaNXYU68keN2HINns"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/mikolabs~Instagram-Bulk-DM/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-mikolabs-Instagram-Bulk-DM",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/mikolabs~Instagram-Bulk-DM/runs": {
      "post": {
        "operationId": "runs-sync-mikolabs-Instagram-Bulk-DM",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/mikolabs~Instagram-Bulk-DM/run-sync": {
      "post": {
        "operationId": "run-sync-mikolabs-Instagram-Bulk-DM",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "required": [
          "usernames",
          "message"
        ],
        "properties": {
          "cookies": {
            "title": "Instagram Cookies",
            "type": "string",
            "description": "Instagram cookies for authentication. Can be in JSON format or raw cookie string. Use this to bypass 2FA requirements."
          },
          "sessionId": {
            "title": "Session ID",
            "type": "string",
            "description": "Instagram session ID for direct authentication. You can find this in your browser cookies as 'sessionid'. Use this OR cookies - session ID is simpler if you only have the sessionid value."
          },
          "sessions": {
            "title": "Bulk Sessions/Cookies",
            "type": "array",
            "description": "List of session IDs or cookies for multiple accounts. Each item can be a raw sessionid or a JSON cookie string.",
            "items": {
              "type": "string"
            }
          },
          "strategy": {
            "title": "Rotation Strategy",
            "enum": [
              "distribute",
              "sequential"
            ],
            "type": "string",
            "description": "How to distribute messages across multiple accounts.",
            "default": "distribute"
          },
          "min_messages_per_account": {
            "title": "Min Messages Per Account",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum number of messages to send from an account before rotating/stopping. Used with Max Messages to create a random range.",
            "default": 30
          },
          "max_messages_per_account": {
            "title": "Max Messages Per Account",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum number of messages to send from an account before rotating/stopping.",
            "default": 50
          },
          "retry_with_next_account": {
            "title": "Retry with next account",
            "type": "boolean",
            "description": "If an account fails to send a message, retry using the next available account.",
            "default": true
          },
          "max_retries": {
            "title": "Attempts per User",
            "minimum": 1,
            "type": "integer",
            "description": "Maximum number of different accounts to try for a single recipient if sending fails.",
            "default": 3
          },
          "usernames": {
            "title": "Target Usernames",
            "type": "array",
            "description": "List of Instagram usernames to send messages to.",
            "items": {
              "type": "string"
            }
          },
          "message": {
            "title": "Message Template",
            "type": "string",
            "description": "Message template with optional randomized parts. Use {option1|option2|option3} syntax for random selection."
          },
          "min_delay": {
            "title": "Minimum Delay (seconds)",
            "minimum": 1,
            "type": "integer",
            "description": "Minimum delay between sending messages (in seconds).",
            "default": 60
          },
          "max_delay": {
            "title": "Maximum Delay (seconds)",
            "minimum": 1,
            "type": "integer",
            "description": "Maximum delay between sending messages (in seconds).",
            "default": 180
          },
          "save_session": {
            "title": "Save Session",
            "type": "boolean",
            "description": "Whether to save the session for future use.",
            "default": true
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}