{
  "openapi": "3.0.1",
  "info": {
    "title": "Instagram Followers Scraper",
    "description": "📸 Instagram Followers Scraper extracts public follower lists from any IG profile—usernames, names, bios, follower/following, verification & profile links. ⚡ Export CSV/JSON for growth, competitor research, influencer discovery & lead gen. ✅ Fast, accurate, scalable.",
    "version": "0.2",
    "x-build-id": "Xp7UKC4fFEVbriZAP"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/simpleapi~instagram-followers-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-simpleapi-instagram-followers-scraper",
        "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/simpleapi~instagram-followers-scraper/runs": {
      "post": {
        "operationId": "runs-sync-simpleapi-instagram-followers-scraper",
        "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/simpleapi~instagram-followers-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-simpleapi-instagram-followers-scraper",
        "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": [
          "startUrls"
        ],
        "properties": {
          "startUrls": {
            "title": "📋 Instagram profiles (URL, @handle, username, or numeric id)",
            "type": "array",
            "description": "Profiles whose FOLLOWERS you want. Accepts profile URLs, @handles, plain usernames, or a numeric user id.\n\nExamples:\n• https://www.instagram.com/nike/\n• @nike\n• nike\n• 528817151",
            "items": {
              "type": "string"
            }
          },
          "maxData": {
            "title": "📊 Max followers per profile",
            "minimum": 1,
            "maximum": 1000000,
            "type": "integer",
            "description": "Maximum genuine followers to collect per profile. Large accounts have millions of followers — set a realistic cap. Example: 200. Default is 100.",
            "default": 100
          },
          "sessionId": {
            "title": "🍪 Instagram sessionid (REQUIRED)",
            "type": "string",
            "description": "Your Instagram `sessionid` cookie. REQUIRED — the followers and enrichment endpoints are login-walled; without it the run returns 0 rows.\n\nHow to get it: log into instagram.com → DevTools (F12) → Application → Cookies → https://www.instagram.com → copy the `sessionid` value."
          },
          "enrichProfiles": {
            "title": "✨ Enrich each follower's profile",
            "type": "boolean",
            "description": "OFF by default. When ON, fetch each follower's full profile: biography, external links, follower/following/media counts, business flags, category, public email/phone, and address/geo when present. Adds ~1–2 requests per follower (slower, higher ban risk at scale). Business email/phone/geo are ~0% on personal accounts and are emitted as null (never guessed) with real run-level coverage stats.",
            "default": false
          },
          "enrichmentConcurrency": {
            "title": "⚙️ Enrichment concurrency",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "How many enrichment requests to run in parallel. Lower = safer (less ban risk). Example: 5. Default is 5.",
            "default": 5
          },
          "verifiedOnly": {
            "title": "✅ Verified accounts only",
            "type": "boolean",
            "description": "Keep only verified (blue-tick) followers.",
            "default": false
          },
          "businessOnly": {
            "title": "🏢 Business/professional accounts only (needs enrichment)",
            "type": "boolean",
            "description": "Keep only business/professional followers. Auto-enables enrichment.",
            "default": false
          },
          "hasEmail": {
            "title": "📧 Has an email only (needs enrichment)",
            "type": "boolean",
            "description": "Keep only followers with a public/business email or an email in their bio. Auto-enables enrichment.",
            "default": false
          },
          "hasPhone": {
            "title": "📞 Has a phone only (needs enrichment)",
            "type": "boolean",
            "description": "Keep only followers with a public/contact phone or a phone in their bio. Auto-enables enrichment.",
            "default": false
          },
          "publicOnly": {
            "title": "🔓 Public accounts only",
            "type": "boolean",
            "description": "Keep only public (non-private) followers.",
            "default": false
          },
          "privateOnly": {
            "title": "🔒 Private accounts only",
            "type": "boolean",
            "description": "Keep only private followers.",
            "default": false
          },
          "minFollowers": {
            "title": "📈 Min follower count (needs enrichment)",
            "minimum": 0,
            "type": "integer",
            "description": "Keep only followers whose own follower_count is at least this. 0 = no minimum. Auto-enables enrichment.",
            "default": 0
          },
          "maxFollowers": {
            "title": "📉 Max follower count (needs enrichment)",
            "minimum": 0,
            "type": "integer",
            "description": "Keep only followers whose own follower_count is at most this. 0 = no maximum. Auto-enables enrichment.",
            "default": 0
          },
          "keywordInBio": {
            "title": "🔑 Keyword(s) in bio (needs enrichment)",
            "type": "array",
            "description": "Keep only followers whose biography contains at least one of these keywords (case-insensitive). Matched terms are reported in `matchedKeywords`. Auto-enables enrichment.",
            "items": {
              "type": "string"
            }
          },
          "aiEnhancement": {
            "title": "🤖 AI bio classification",
            "type": "boolean",
            "description": "OFF by default. When ON (and an API key is provided/available), classify each follower's bio into language, niche, topics, and a lead flag. Requires enrichment (bio text). Nothing runs without both enable + key.",
            "default": false
          },
          "aiModel": {
            "title": "🤖 AI Model / Provider",
            "enum": [
              "claude-haiku-4-5",
              "claude-sonnet-5",
              "claude-opus-4-8",
              "claude-fable-5",
              "gpt-4o-mini",
              "gpt-4o",
              "gpt-4.1-mini",
              "gpt-4.1",
              "o3-mini",
              "o1",
              "gemini-2.0-flash-lite",
              "gemini-2.0-flash",
              "gemini-2.5-flash",
              "gemini-2.5-pro",
              "grok-3-mini",
              "grok-3",
              "deepseek-chat",
              "deepseek-reasoner",
              "sonar",
              "sonar-pro",
              "mistral-small-latest",
              "mistral-large-latest"
            ],
            "type": "string",
            "description": "Provider auto-detected from the name: claude-*=Anthropic, gpt-*/o1/o3=OpenAI, gemini-*=Google, grok-*=xAI, deepseek-*=DeepSeek, sonar*=Perplexity, mistral-*=Mistral. Cheaper mini/flash/haiku/lite models are recommended for classification.",
            "default": "claude-haiku-4-5"
          },
          "aiApiKey": {
            "title": "🔑 AI API key",
            "type": "string",
            "description": "API key for the chosen provider. If blank, the matching env var is used (ANTHROPIC_API_KEY / OPENAI_API_KEY / GEMINI_API_KEY / XAI_API_KEY / DEEPSEEK_API_KEY / PERPLEXITY_API_KEY / MISTRAL_API_KEY). No AI runs without a resolved key."
          },
          "proxyConfiguration": {
            "title": "🌐 Proxy configuration",
            "type": "object",
            "description": "Residential proxy is strongly recommended and used by default. A sticky IP is used automatically when a sessionId is supplied (rotating IPs under one login triggers checkpoints); IPs rotate per request when no session is set.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ]
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}