{
  "openapi": "3.0.1",
  "info": {
    "title": "Instagram Creator Lead Finder · Keywords & Hashtags",
    "description": "Find and qualify Instagram creators from keywords and hashtags. Export public profile evidence, contact signals, source posts, and transparent filter decisions.",
    "version": "1.0",
    "x-build-id": "KMgPcbU3rilkkTAcL"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/data-slayer~instagram-creator-lead-finder/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-data-slayer-instagram-creator-lead-finder",
        "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/data-slayer~instagram-creator-lead-finder/runs": {
      "post": {
        "operationId": "runs-sync-data-slayer-instagram-creator-lead-finder",
        "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/data-slayer~instagram-creator-lead-finder/run-sync": {
      "post": {
        "operationId": "run-sync-data-slayer-instagram-creator-lead-finder",
        "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": [
          "searches"
        ],
        "properties": {
          "searches": {
            "title": "Keywords and hashtags",
            "minItems": 1,
            "maxItems": 10,
            "type": "array",
            "description": "Add 1–10 niche searches. Use plain text for Reel keyword discovery and start a hashtag with #, for example specialty coffee and #specialtycoffee. Each search inspects one page in V1.",
            "items": {
              "type": "string",
              "minLength": 1,
              "maxLength": 100
            }
          },
          "hashtagFeed": {
            "title": "Hashtag discovery feed",
            "enum": [
              "top",
              "recent",
              "reels"
            ],
            "type": "string",
            "description": "Choose which first-page hashtag feed to inspect. This setting applies only to searches that start with #.",
            "default": "top"
          },
          "maxLeads": {
            "title": "Maximum leads",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Maximum qualified creators to return. This is a ceiling, not a guarantee; source coverage, deduplication, filters, and scan budgets can produce fewer leads.",
            "default": 10
          },
          "maxProfileLookups": {
            "title": "Maximum profile lookups",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Maximum discovered creator profiles to inspect, including profiles later rejected by your filters. Must be at least Maximum leads.",
            "default": 25
          },
          "minFollowers": {
            "title": "Minimum followers",
            "minimum": 0,
            "type": "integer",
            "description": "Keep creators with at least this many followers. Use 0 for no minimum.",
            "default": 1000
          },
          "maxFollowers": {
            "title": "Maximum followers",
            "minimum": 0,
            "type": "integer",
            "description": "Optional upper follower limit. Leave empty for no maximum."
          },
          "excludePrivateAccounts": {
            "title": "Exclude private accounts",
            "type": "boolean",
            "description": "Keep only public accounts that expose usable qualification evidence.",
            "default": true
          },
          "professionalAccountsOnly": {
            "title": "Professional accounts only",
            "type": "boolean",
            "description": "Keep only accounts identified by Instagram as a business or creator/professional account. Leave off when individual creators are also useful.",
            "default": false
          },
          "contactRequirement": {
            "title": "Public contact requirement",
            "enum": [
              "none",
              "any_public_contact",
              "public_email"
            ],
            "type": "string",
            "description": "Optionally require contact evidence published on the Instagram profile. V1 does not crawl linked websites or verify deliverability.",
            "default": "none"
          },
          "analysisDepth": {
            "title": "Qualification depth",
            "enum": [
              "profile_only",
              "recent_reels"
            ],
            "type": "string",
            "description": "Profile only is faster and cheaper. Recent Reels also samples one page of Reels for profile-qualified candidates, subject to the separate Reel-analysis budget.",
            "default": "profile_only"
          },
          "maxProfilesForReelAnalysis": {
            "title": "Maximum profiles for Reel analysis",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Maximum profile-qualified creators whose recent Reels may be fetched. Used only for Profile + recent Reels and must be at least Maximum leads in that mode.",
            "default": 10
          },
          "reelsPerCreator": {
            "title": "Reels sampled per creator",
            "minimum": 1,
            "maximum": 12,
            "type": "integer",
            "description": "Use up to this many available recent Reels per analyzed creator. The actual sample may be smaller.",
            "default": 6
          },
          "minReelEngagementRate": {
            "title": "Minimum sampled Reel engagement rate (%)",
            "minimum": 0,
            "maximum": 100,
            "type": "number",
            "description": "Optional minimum for (average likes + average comments) ÷ followers × 100 across the sampled Reels. Requires Profile + recent Reels and is a sample-based comparison signal, not an audited audience metric."
          },
          "excludeUsernames": {
            "title": "Exclude usernames",
            "maxItems": 10000,
            "type": "array",
            "description": "Skip creators already in your CRM or prior exports. Add usernames, @handles, or Instagram profile URLs. Matching is case-insensitive.",
            "items": {
              "type": "string",
              "minLength": 1,
              "maxLength": 200
            },
            "default": []
          }
        }
      },
      "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}