{
  "openapi": "3.0.1",
  "info": {
    "title": "Influencer Scraper",
    "description": "Search TikTok, Instagram, YouTube, and Twitter/X creators with follower, country, engagement, email, industry, and audience filters.",
    "version": "1.0",
    "x-build-id": "zjms0iKtfkymQA2pX"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/creativault~creativault-creator-search/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-creativault-creativault-creator-search",
        "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/creativault~creativault-creator-search/runs": {
      "post": {
        "operationId": "runs-sync-creativault-creativault-creator-search",
        "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/creativault~creativault-creator-search/run-sync": {
      "post": {
        "operationId": "run-sync-creativault-creativault-creator-search",
        "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",
        "properties": {
          "platform": {
            "title": "Platform",
            "enum": [
              "tiktok",
              "youtube",
              "instagram",
              "twitter"
            ],
            "type": "string",
            "description": "Social platform.",
            "default": "tiktok"
          },
          "keyword": {
            "title": "Keyword",
            "type": "string",
            "description": "Creator keyword, topic, niche, or username."
          },
          "countryCode": {
            "title": "Creator country code",
            "type": "string",
            "description": "Comma-separated ISO country codes, for example US,CA. Common country names such as United States/美国 are normalized automatically.",
            "default": "US"
          },
          "languageCode": {
            "title": "Creator language code",
            "type": "string",
            "description": "Comma-separated creator content language codes, for example en,es. Common language names such as English/英语 are normalized automatically."
          },
          "industry": {
            "title": "Industry or category",
            "type": "string",
            "description": "Industry/category filter. Use supported English category names or IDs. For TikTok, Chinese labels such as 美妆 may not be accepted by the OpenAPI."
          },
          "followersCntGte": {
            "title": "Minimum followers",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum followers/subscribers.",
            "default": 10000
          },
          "followersCntLte": {
            "title": "Maximum followers",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum followers/subscribers. Leave as 0 to omit.",
            "default": 0
          },
          "last10AvgVideoViewsGte": {
            "title": "Minimum average views",
            "minimum": 0,
            "type": "number",
            "description": "Minimum average views.",
            "default": 0
          },
          "last10AvgVideoViewsLte": {
            "title": "Maximum average views",
            "minimum": 0,
            "type": "number",
            "description": "Maximum average views. Leave as 0 to omit.",
            "default": 0
          },
          "last10AvgVideoInteractionRateGte": {
            "title": "Minimum interaction rate (%)",
            "minimum": 0,
            "maximum": 100,
            "type": "number",
            "description": "0-100 percentage.",
            "default": 0
          },
          "last10AvgVideoInteractionRateLte": {
            "title": "Maximum interaction rate (%)",
            "minimum": 0,
            "maximum": 100,
            "type": "number",
            "description": "0-100 percentage. Leave as 0 to omit.",
            "default": 0
          },
          "last10AvgShortVideoViewsGte": {
            "title": "Minimum short-video average views",
            "minimum": 0,
            "type": "number",
            "description": "YouTube only. Minimum last-10 short-video average views.",
            "default": 0
          },
          "last10AvgShortVideoViewsLte": {
            "title": "Maximum short-video average views",
            "minimum": 0,
            "type": "number",
            "description": "YouTube only. Leave as 0 to omit.",
            "default": 0
          },
          "last10AvgShortVideoInteractionRateGte": {
            "title": "Minimum short-video interaction rate (%)",
            "minimum": 0,
            "maximum": 100,
            "type": "number",
            "description": "YouTube only. 0-100 percentage.",
            "default": 0
          },
          "last10AvgShortVideoInteractionRateLte": {
            "title": "Maximum short-video interaction rate (%)",
            "minimum": 0,
            "maximum": 100,
            "type": "number",
            "description": "YouTube only. Leave as 0 to omit.",
            "default": 0
          },
          "last10AvgVideoLikesCntGte": {
            "title": "Minimum average likes",
            "minimum": 0,
            "type": "number",
            "description": "Twitter/X only. Minimum last-10 average likes.",
            "default": 0
          },
          "last10AvgVideoLikesCntLte": {
            "title": "Maximum average likes",
            "minimum": 0,
            "type": "number",
            "description": "Twitter/X only. Leave as 0 to omit.",
            "default": 0
          },
          "lastVideoViewsCntGte": {
            "title": "Minimum latest video views",
            "minimum": 0,
            "type": "integer",
            "description": "Twitter/X only. Minimum latest video views.",
            "default": 0
          },
          "lastVideoViewsCntLte": {
            "title": "Maximum latest video views",
            "minimum": 0,
            "type": "integer",
            "description": "Twitter/X only. Leave as 0 to omit.",
            "default": 0
          },
          "last10VideoViewsPerSubGte": {
            "title": "Minimum views/followers (%)",
            "minimum": 0,
            "maximum": 100,
            "type": "number",
            "description": "Twitter/X only. Last-10 average views per follower.",
            "default": 0
          },
          "last10VideoViewsPerSubLte": {
            "title": "Maximum views/followers (%)",
            "minimum": 0,
            "maximum": 100,
            "type": "number",
            "description": "Twitter/X only. Leave as 0 to omit.",
            "default": 0
          },
          "last10MedVideoViewsPerSubGte": {
            "title": "Minimum median views/followers (%)",
            "minimum": 0,
            "maximum": 100,
            "type": "number",
            "description": "Twitter/X only. Last-10 median views per follower.",
            "default": 0
          },
          "last10MedVideoViewsPerSubLte": {
            "title": "Maximum median views/followers (%)",
            "minimum": 0,
            "maximum": 100,
            "type": "number",
            "description": "Twitter/X only. Leave as 0 to omit.",
            "default": 0
          },
          "hasEmail": {
            "title": "Only creators with email",
            "type": "boolean",
            "description": "Return only creators with public email contact when supported.",
            "default": false
          },
          "hasWhatsapp": {
            "title": "Only creators with WhatsApp",
            "type": "boolean",
            "description": "YouTube/Instagram filter.",
            "default": false
          },
          "hasMcn": {
            "title": "TikTok has MCN",
            "type": "boolean",
            "description": "TikTok only.",
            "default": false
          },
          "hasLine": {
            "title": "TikTok has LINE",
            "type": "boolean",
            "description": "TikTok only.",
            "default": false
          },
          "hasZalo": {
            "title": "TikTok has Zalo",
            "type": "boolean",
            "description": "TikTok only.",
            "default": false
          },
          "isProductKol": {
            "title": "Instagram product KOL",
            "type": "boolean",
            "description": "Instagram only.",
            "default": false
          },
          "isAiCreator": {
            "title": "AI creator",
            "type": "boolean",
            "description": "YouTube/Instagram filter when supported.",
            "default": false
          },
          "isBlueVerified": {
            "title": "Twitter/X blue verified",
            "type": "boolean",
            "description": "Twitter/X only.",
            "default": false
          },
          "isVerified": {
            "title": "Verification status",
            "enum": [
              "",
              "1",
              "0"
            ],
            "type": "string",
            "description": "Twitter/X optional verification filter.",
            "default": ""
          },
          "kolStyle": {
            "title": "KOL style tags",
            "type": "string",
            "description": "Twitter/X only. Comma-separated style tags."
          },
          "gender": {
            "title": "Creator gender",
            "enum": [
              "",
              "female",
              "male"
            ],
            "type": "string",
            "description": "Optional creator gender filter.",
            "default": ""
          },
          "audienceCountryCodeList": {
            "title": "Audience country codes",
            "type": "string",
            "description": "Comma-separated ISO country codes. Common country names are normalized automatically."
          },
          "audienceLanguageCodeList": {
            "title": "Audience language codes",
            "type": "string",
            "description": "Comma-separated language codes. Common language names are normalized automatically."
          },
          "audienceAgeList": {
            "title": "Audience age groups",
            "type": "string",
            "description": "Comma-separated age group IDs or labels when supported."
          },
          "audienceFemaleRateGte": {
            "title": "Minimum female audience (%)",
            "minimum": 0,
            "maximum": 100,
            "type": "number",
            "description": "Minimum female audience percentage.",
            "default": 0
          },
          "audienceFemaleRateLte": {
            "title": "Maximum female audience (%)",
            "minimum": 0,
            "maximum": 100,
            "type": "number",
            "description": "Maximum female audience percentage. Leave as 0 to omit.",
            "default": 0
          },
          "lastVideoPublishDateGte": {
            "title": "Last post from",
            "type": "string",
            "description": "YYYY-MM-DD."
          },
          "lastVideoPublishDateLte": {
            "title": "Last post to",
            "type": "string",
            "description": "YYYY-MM-DD."
          },
          "productCategoryIdArray": {
            "title": "TikTok product category IDs",
            "type": "string",
            "description": "TikTok only. Comma-separated product category IDs."
          },
          "last30dayGmvGte": {
            "title": "TikTok minimum 30-day GMV",
            "minimum": 0,
            "type": "number",
            "description": "TikTok commerce filter.",
            "default": 0
          },
          "last30dayGmvLte": {
            "title": "TikTok maximum 30-day GMV",
            "minimum": 0,
            "type": "number",
            "description": "TikTok commerce filter. Leave as 0 to omit.",
            "default": 0
          },
          "last30dayGpmGte": {
            "title": "TikTok minimum 30-day GPM",
            "minimum": 0,
            "type": "number",
            "description": "TikTok commerce filter.",
            "default": 0
          },
          "last30dayGpmLte": {
            "title": "TikTok maximum 30-day GPM",
            "minimum": 0,
            "type": "number",
            "description": "TikTok commerce filter. Leave as 0 to omit.",
            "default": 0
          },
          "last30dayGmvPerBuyerGte": {
            "title": "TikTok minimum 30-day GMV/buyer",
            "minimum": 0,
            "type": "number",
            "description": "TikTok commerce filter.",
            "default": 0
          },
          "last30dayGmvPerBuyerLte": {
            "title": "TikTok maximum 30-day GMV/buyer",
            "minimum": 0,
            "type": "number",
            "description": "TikTok commerce filter. Leave as 0 to omit.",
            "default": 0
          },
          "last30dayCommissionRateGte": {
            "title": "TikTok minimum commission rate (%)",
            "minimum": 0,
            "maximum": 100,
            "type": "number",
            "description": "TikTok commerce filter.",
            "default": 0
          },
          "last30dayCommissionRateLte": {
            "title": "TikTok maximum commission rate (%)",
            "minimum": 0,
            "maximum": 100,
            "type": "number",
            "description": "TikTok commerce filter. Leave as 0 to omit.",
            "default": 0
          },
          "sortField": {
            "title": "Sort field",
            "type": "string",
            "description": "Optional. Leave empty to use a platform-safe default."
          },
          "sortOrder": {
            "title": "Sort order",
            "enum": [
              "desc",
              "asc"
            ],
            "type": "string",
            "description": "Sort direction.",
            "default": "desc"
          },
          "maxResults": {
            "title": "Max billable records",
            "minimum": 1,
            "maximum": 100000,
            "type": "integer",
            "description": "Maximum records to return and charge for.",
            "default": 100
          },
          "size": {
            "title": "Page size",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Creator/collection page size max 100. Video search is capped at 10.",
            "default": 50
          },
          "lang": {
            "title": "Response language",
            "enum": [
              "en",
              "cn"
            ],
            "type": "string",
            "description": "Language for translated code values.",
            "default": "en"
          },
          "maxRetries": {
            "title": "Max retries",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "Retries for temporary CreatiVault API rate-limit and server errors.",
            "default": 3
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}