{
  "openapi": "3.0.1",
  "info": {
    "title": "Instagram Followers Scraper",
    "description": "Scrape Instagram follower data instantly with this Instagram Followers Scraper 👥 Extract usernames, profile links, follower counts, bios, and audience insights with ease 📊 Perfect for influencer research, competitor analysis, brand monitoring, and growth tracking 🔍🚀",
    "version": "0.1",
    "x-build-id": "EvaLdFXOzZbgKcSky"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/scrapio~instagram-followers-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-scrapio-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/scrapio~instagram-followers-scraper/runs": {
      "post": {
        "operationId": "runs-sync-scrapio-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/scrapio~instagram-followers-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-scrapio-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",
          "sessionId"
        ],
        "properties": {
          "startUrls": {
            "title": "📋 Instagram Profile URLs or Usernames",
            "type": "array",
            "description": "Instagram profile URLs or usernames whose FOLLOWERS will be scraped and enriched into leads.\n\nExamples:\n• https://www.instagram.com/cristiano/\n• nike\n\nYou can add multiple profiles in one run.",
            "items": {
              "type": "string"
            }
          },
          "maxData": {
            "title": "📊 Maximum Followers per Profile",
            "minimum": 1,
            "maximum": 100000,
            "type": "integer",
            "description": "Maximum number of followers to collect per profile. Example: maxData=200 → up to 200 followers. Default is 200.",
            "default": 200
          },
          "sessionId": {
            "title": "🍪 Instagram sessionid (required)",
            "type": "string",
            "description": "REQUIRED. The Instagram friendships/followers and enrichment endpoints are login-walled, so a valid sessionid cookie is mandatory.\n\nHow to get it:\n1. Log into Instagram in your browser\n2. Open DevTools (F12) → Application → Cookies → https://www.instagram.com\n3. Copy the 'sessionid' value\n\nExample: 80339464000%3AMwlUEdZk...%3A5%3AAYiJEi3...\n\nA sticky proxy IP is bound to this session automatically to avoid checkpoints."
          },
          "enrichProfiles": {
            "title": "🔍 Enrich each follower (lead data)",
            "type": "boolean",
            "description": "ON by default (this is the lead-gen actor). Each follower gets one extra profile lookup adding bio, follower/following/media counts, business/professional flags, category, HD picture, bio links, and (business/pro accounts only) public email/phone/address/geo. Absent values are returned as null — never guessed. Turn OFF for a faster/cheaper plain list. Default: true.",
            "default": true
          },
          "verifiedOnly": {
            "title": "✅ Verified accounts only",
            "type": "boolean",
            "description": "Keep only verified (blue-check) accounts among the target followers — useful for shortlisting notable/business followers. Default: false.",
            "default": false
          },
          "businessOnly": {
            "title": "🏢 Business/Professional accounts only (needs enrichment)",
            "type": "boolean",
            "description": "Keep only business/professional accounts. Requires enrichment (auto-enabled). Default: false.",
            "default": false
          },
          "hasEmail": {
            "title": "📧 Has public email (needs enrichment)",
            "type": "boolean",
            "description": "Keep only accounts with a public email (from the profile's contact button or its bio text). Requires enrichment. Default: false.",
            "default": false
          },
          "hasPhone": {
            "title": "📞 Has public phone (needs enrichment)",
            "type": "boolean",
            "description": "Keep only accounts with a public phone number (contact button or bio text). Requires enrichment. Default: false.",
            "default": false
          },
          "minFollowers": {
            "title": "📈 Minimum follower count (needs enrichment)",
            "minimum": 0,
            "type": "integer",
            "description": "Keep only followers whose own follower count is ≥ this value (find influential followers). Requires enrichment. Leave empty to disable."
          },
          "maxFollowers": {
            "title": "📉 Maximum follower count (needs enrichment)",
            "minimum": 0,
            "type": "integer",
            "description": "Keep only followers whose own follower count is ≤ this value (e.g. find micro-accounts). Requires enrichment. Leave empty to disable."
          },
          "keywordInBio": {
            "title": "🔤 Keyword in bio (needs enrichment)",
            "type": "array",
            "description": "Keep only accounts whose bio contains ANY of these keywords (case-insensitive). Requires enrichment. Example: [\"founder\", \"marketing\"].",
            "items": {
              "type": "string"
            }
          },
          "publicOnly": {
            "title": "🔓 Public accounts only",
            "type": "boolean",
            "description": "Keep only public (non-private) accounts. Default: false.",
            "default": false
          },
          "privateOnly": {
            "title": "🔒 Private accounts only",
            "type": "boolean",
            "description": "Keep only private accounts. Default: false.",
            "default": false
          },
          "aiEnhancement": {
            "title": "🤖 AI bio classification",
            "type": "boolean",
            "description": "OFF by default. When ON (and enrichment produced a bio), classify each account's bio into topics, lead quality, account type, language and a short summary. Needs an API key. On failure the AI fields are null — never fabricated. Default: false.",
            "default": false
          },
          "aiModel": {
            "title": "🤖 AI Model / Provider",
            "enum": [
              "claude-haiku-4-5",
              "claude-sonnet-5",
              "claude-opus-4-8",
              "gpt-4o-mini",
              "gpt-4o",
              "gpt-4.1-mini",
              "gemini-2.0-flash-lite",
              "gemini-2.0-flash",
              "gemini-2.5-flash",
              "grok-3-mini",
              "deepseek-chat",
              "sonar",
              "mistral-small-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. Falls back to the matching env var (ANTHROPIC_API_KEY / OPENAI_API_KEY / GEMINI_API_KEY / XAI_API_KEY / DEEPSEEK_API_KEY / PERPLEXITY_API_KEY / MISTRAL_API_KEY). Only used when AI bio classification is on."
          },
          "proxyConfiguration": {
            "title": "🌐 Proxy Configuration",
            "type": "object",
            "description": "Proxy settings. Residential proxy is the default and strongly recommended — the login-walled IG API blocks datacenter IPs. When a sessionid is supplied a sticky IP is bound to it (rotating IPs under one cookie triggers checkpoints).",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}