Instagram Unfollower API avatar
Instagram Unfollower API

Under maintenance

Pricing

$10.00/month + usage

Go to Store
Instagram Unfollower API

Instagram Unfollower API

Under maintenance

Developed by

Mike Cooper

Maintained by Community

Make your account unfollow other users. Features: - Proxy to ensure no ban / limit - Min Max unfollows limits - Unfollow only people who don't follow back or unfollow anyone - Time limit between unfollows

5.0 (1)

Pricing

$10.00/month + usage

0

Monthly users

2

Runs succeeded

>99%

Last modified

a month ago

You can access the Instagram Unfollower API programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1{
2  "openapi": "3.0.1",
3  "info": {
4    "version": "0.0",
5    "x-build-id": "O8yyrF44qeZvMPliO"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/jmqcooper~instagram-unfollower/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-jmqcooper-instagram-unfollower",
16        "x-openai-isConsequential": false,
17        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
18        "tags": [
19          "Run Actor"
20        ],
21        "requestBody": {
22          "required": true,
23          "content": {
24            "application/json": {
25              "schema": {
26                "$ref": "#/components/schemas/inputSchema"
27              }
28            }
29          }
30        },
31        "parameters": [
32          {
33            "name": "token",
34            "in": "query",
35            "required": true,
36            "schema": {
37              "type": "string"
38            },
39            "description": "Enter your Apify token here"
40          }
41        ],
42        "responses": {
43          "200": {
44            "description": "OK"
45          }
46        }
47      }
48    },
49    "/acts/jmqcooper~instagram-unfollower/runs": {
50      "post": {
51        "operationId": "runs-sync-jmqcooper-instagram-unfollower",
52        "x-openai-isConsequential": false,
53        "summary": "Executes an Actor and returns information about the initiated run in response.",
54        "tags": [
55          "Run Actor"
56        ],
57        "requestBody": {
58          "required": true,
59          "content": {
60            "application/json": {
61              "schema": {
62                "$ref": "#/components/schemas/inputSchema"
63              }
64            }
65          }
66        },
67        "parameters": [
68          {
69            "name": "token",
70            "in": "query",
71            "required": true,
72            "schema": {
73              "type": "string"
74            },
75            "description": "Enter your Apify token here"
76          }
77        ],
78        "responses": {
79          "200": {
80            "description": "OK",
81            "content": {
82              "application/json": {
83                "schema": {
84                  "$ref": "#/components/schemas/runsResponseSchema"
85                }
86              }
87            }
88          }
89        }
90      }
91    },
92    "/acts/jmqcooper~instagram-unfollower/run-sync": {
93      "post": {
94        "operationId": "run-sync-jmqcooper-instagram-unfollower",
95        "x-openai-isConsequential": false,
96        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
97        "tags": [
98          "Run Actor"
99        ],
100        "requestBody": {
101          "required": true,
102          "content": {
103            "application/json": {
104              "schema": {
105                "$ref": "#/components/schemas/inputSchema"
106              }
107            }
108          }
109        },
110        "parameters": [
111          {
112            "name": "token",
113            "in": "query",
114            "required": true,
115            "schema": {
116              "type": "string"
117            },
118            "description": "Enter your Apify token here"
119          }
120        ],
121        "responses": {
122          "200": {
123            "description": "OK"
124          }
125        }
126      }
127    }
128  },
129  "components": {
130    "schemas": {
131      "inputSchema": {
132        "type": "object",
133        "required": [
134          "username",
135          "password"
136        ],
137        "properties": {
138          "username": {
139            "title": "Instagram Username",
140            "type": "string",
141            "description": "Your Instagram username"
142          },
143          "password": {
144            "title": "Instagram Password",
145            "type": "string",
146            "description": "Your Instagram password"
147          },
148          "unfollowMode": {
149            "title": "Unfollow Mode",
150            "enum": [
151              "selective",
152              "general"
153            ],
154            "type": "string",
155            "description": "Choose whether to unfollow only non-followers or any users",
156            "default": "selective"
157          },
158          "unfollowDelayMin": {
159            "title": "Minimum Delay Between Unfollows (seconds)",
160            "minimum": 10,
161            "maximum": 300,
162            "type": "integer",
163            "description": "Minimum delay between unfollowing accounts to avoid detection",
164            "default": 30
165          },
166          "unfollowDelayMax": {
167            "title": "Maximum Delay Between Unfollows (seconds)",
168            "minimum": 20,
169            "maximum": 600,
170            "type": "integer",
171            "description": "Maximum delay between unfollowing accounts to avoid detection",
172            "default": 60
173          },
174          "maxUnfollowsPerRun": {
175            "title": "Maximum Unfollows Per Run",
176            "minimum": 1,
177            "maximum": 100,
178            "type": "integer",
179            "description": "Maximum number of accounts to unfollow in this run",
180            "default": 20
181          },
182          "excludeUsernames": {
183            "title": "Exclude Usernames",
184            "type": "string",
185            "description": "Comma-separated list of usernames to exclude from unfollowing"
186          },
187          "dryRun": {
188            "title": "Dry Run",
189            "type": "boolean",
190            "description": "If true, the bot will not actually unfollow anyone (testing mode)",
191            "default": false
192          },
193          "saveFollowersList": {
194            "title": "Save Followers List",
195            "type": "boolean",
196            "description": "Save the list of your followers to the dataset",
197            "default": true
198          },
199          "saveFollowingList": {
200            "title": "Save Following List",
201            "type": "boolean",
202            "description": "Save the list of accounts you're following to the dataset",
203            "default": true
204          },
205          "proxy": {
206            "title": "Proxy Server",
207            "type": "string",
208            "description": "Optional proxy server in format 'protocol://[user:pass@]host:port' (e.g., http://11.22.33.44:8080). Use a proxy in your home country to avoid location-based verification."
209          },
210          "useSession": {
211            "title": "Use Session Persistence",
212            "type": "boolean",
213            "description": "Save login sessions to reduce authentication frequency and avoid verification challenges",
214            "default": true
215          },
216          "forceNewSession": {
217            "title": "Force New Session",
218            "type": "boolean",
219            "description": "Force creating a new session even if a saved one exists",
220            "default": false
221          },
222          "sessionFile": {
223            "title": "Custom Session File Path",
224            "type": "string",
225            "description": "Optional custom path for session file. Default is 'sessions/session_username.json'"
226          }
227        }
228      },
229      "runsResponseSchema": {
230        "type": "object",
231        "properties": {
232          "data": {
233            "type": "object",
234            "properties": {
235              "id": {
236                "type": "string"
237              },
238              "actId": {
239                "type": "string"
240              },
241              "userId": {
242                "type": "string"
243              },
244              "startedAt": {
245                "type": "string",
246                "format": "date-time",
247                "example": "2025-01-08T00:00:00.000Z"
248              },
249              "finishedAt": {
250                "type": "string",
251                "format": "date-time",
252                "example": "2025-01-08T00:00:00.000Z"
253              },
254              "status": {
255                "type": "string",
256                "example": "READY"
257              },
258              "meta": {
259                "type": "object",
260                "properties": {
261                  "origin": {
262                    "type": "string",
263                    "example": "API"
264                  },
265                  "userAgent": {
266                    "type": "string"
267                  }
268                }
269              },
270              "stats": {
271                "type": "object",
272                "properties": {
273                  "inputBodyLen": {
274                    "type": "integer",
275                    "example": 2000
276                  },
277                  "rebootCount": {
278                    "type": "integer",
279                    "example": 0
280                  },
281                  "restartCount": {
282                    "type": "integer",
283                    "example": 0
284                  },
285                  "resurrectCount": {
286                    "type": "integer",
287                    "example": 0
288                  },
289                  "computeUnits": {
290                    "type": "integer",
291                    "example": 0
292                  }
293                }
294              },
295              "options": {
296                "type": "object",
297                "properties": {
298                  "build": {
299                    "type": "string",
300                    "example": "latest"
301                  },
302                  "timeoutSecs": {
303                    "type": "integer",
304                    "example": 300
305                  },
306                  "memoryMbytes": {
307                    "type": "integer",
308                    "example": 1024
309                  },
310                  "diskMbytes": {
311                    "type": "integer",
312                    "example": 2048
313                  }
314                }
315              },
316              "buildId": {
317                "type": "string"
318              },
319              "defaultKeyValueStoreId": {
320                "type": "string"
321              },
322              "defaultDatasetId": {
323                "type": "string"
324              },
325              "defaultRequestQueueId": {
326                "type": "string"
327              },
328              "buildNumber": {
329                "type": "string",
330                "example": "1.0.0"
331              },
332              "containerUrl": {
333                "type": "string"
334              },
335              "usage": {
336                "type": "object",
337                "properties": {
338                  "ACTOR_COMPUTE_UNITS": {
339                    "type": "integer",
340                    "example": 0
341                  },
342                  "DATASET_READS": {
343                    "type": "integer",
344                    "example": 0
345                  },
346                  "DATASET_WRITES": {
347                    "type": "integer",
348                    "example": 0
349                  },
350                  "KEY_VALUE_STORE_READS": {
351                    "type": "integer",
352                    "example": 0
353                  },
354                  "KEY_VALUE_STORE_WRITES": {
355                    "type": "integer",
356                    "example": 1
357                  },
358                  "KEY_VALUE_STORE_LISTS": {
359                    "type": "integer",
360                    "example": 0
361                  },
362                  "REQUEST_QUEUE_READS": {
363                    "type": "integer",
364                    "example": 0
365                  },
366                  "REQUEST_QUEUE_WRITES": {
367                    "type": "integer",
368                    "example": 0
369                  },
370                  "DATA_TRANSFER_INTERNAL_GBYTES": {
371                    "type": "integer",
372                    "example": 0
373                  },
374                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
375                    "type": "integer",
376                    "example": 0
377                  },
378                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
379                    "type": "integer",
380                    "example": 0
381                  },
382                  "PROXY_SERPS": {
383                    "type": "integer",
384                    "example": 0
385                  }
386                }
387              },
388              "usageTotalUsd": {
389                "type": "number",
390                "example": 0.00005
391              },
392              "usageUsd": {
393                "type": "object",
394                "properties": {
395                  "ACTOR_COMPUTE_UNITS": {
396                    "type": "integer",
397                    "example": 0
398                  },
399                  "DATASET_READS": {
400                    "type": "integer",
401                    "example": 0
402                  },
403                  "DATASET_WRITES": {
404                    "type": "integer",
405                    "example": 0
406                  },
407                  "KEY_VALUE_STORE_READS": {
408                    "type": "integer",
409                    "example": 0
410                  },
411                  "KEY_VALUE_STORE_WRITES": {
412                    "type": "number",
413                    "example": 0.00005
414                  },
415                  "KEY_VALUE_STORE_LISTS": {
416                    "type": "integer",
417                    "example": 0
418                  },
419                  "REQUEST_QUEUE_READS": {
420                    "type": "integer",
421                    "example": 0
422                  },
423                  "REQUEST_QUEUE_WRITES": {
424                    "type": "integer",
425                    "example": 0
426                  },
427                  "DATA_TRANSFER_INTERNAL_GBYTES": {
428                    "type": "integer",
429                    "example": 0
430                  },
431                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
432                    "type": "integer",
433                    "example": 0
434                  },
435                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
436                    "type": "integer",
437                    "example": 0
438                  },
439                  "PROXY_SERPS": {
440                    "type": "integer",
441                    "example": 0
442                  }
443                }
444              }
445            }
446          }
447        }
448      }
449    }
450  }
451}

Instagram Unfollower API OpenAPI definition

OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.

OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.

By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.

You can download the OpenAPI definitions for Instagram Unfollower API from the options below:

If you’d like to learn more about how OpenAPI powers GPTs, read our blog post.

You can also check out our other API clients:

Pricing

Pricing model

Rental 

To use this Actor, you have to pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period. You also pay for the Apify platform usage.

Free trial

3 days

Price

$10.00