{
  "openapi": "3.0.1",
  "info": {
    "title": "LinkedIn People Search & Candidate Finder - No Cookies",
    "description": "Find public LinkedIn people by query, name, title, skills, location, company, school, industry, seniority, or experience. Run multiple searches, deduplicate profiles, and export visible match evidence without a LinkedIn login or session cookie.",
    "version": "1.0",
    "x-build-id": "vdYtbnW4fRgeIkWxC"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/thirdwatch~linkedin-candidate-finder-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-thirdwatch-linkedin-candidate-finder-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/thirdwatch~linkedin-candidate-finder-scraper/runs": {
      "post": {
        "operationId": "runs-sync-thirdwatch-linkedin-candidate-finder-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/thirdwatch~linkedin-candidate-finder-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-thirdwatch-linkedin-candidate-finder-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",
        "properties": {
          "searchQuery": {
            "title": "People search query",
            "type": "string",
            "description": "Optional general people-search phrase such as <code>software engineer</code>, <code>John Smith product manager</code>, or <code>healthcare sales leader</code>. Combine it with the structured filters below."
          },
          "searchQueries": {
            "title": "Additional people queries",
            "maxItems": 25,
            "type": "array",
            "description": "Run up to 25 distinct people-search phrases in one Actor run. Results are deduplicated globally by canonical LinkedIn profile URL.",
            "items": {
              "type": "string",
              "minLength": 1
            },
            "default": []
          },
          "personNames": {
            "title": "Person names",
            "maxItems": 50,
            "type": "array",
            "description": "Optional exact person names. Names are combined as alternatives, so a profile may match any submitted name.",
            "items": {
              "type": "string",
              "minLength": 1
            },
            "default": []
          },
          "role": {
            "title": "Role / job title",
            "type": "string",
            "description": "Backward-compatible single target role, such as <code>Senior Software Engineer</code> or <code>Product Manager</code>."
          },
          "jobTitles": {
            "title": "Additional job titles",
            "maxItems": 30,
            "type": "array",
            "description": "Alternative target titles. The single role and these titles are combined with OR to improve recall.",
            "items": {
              "type": "string",
              "minLength": 1
            },
            "default": []
          },
          "skills": {
            "title": "Skills",
            "maxItems": 30,
            "type": "array",
            "description": "Skills or technologies to include as exact phrases in public-web search.",
            "items": {
              "type": "string",
              "minLength": 1
            },
            "default": []
          },
          "skillsMatch": {
            "title": "Skill matching",
            "enum": [
              "all",
              "any"
            ],
            "type": "string",
            "description": "Require every skill phrase, or search for profiles matching any submitted skill.",
            "default": "all"
          },
          "keywords": {
            "title": "Required keywords",
            "maxItems": 30,
            "type": "array",
            "description": "Additional exact phrases such as certifications, products, or domain terms.",
            "items": {
              "type": "string",
              "minLength": 1
            },
            "default": []
          },
          "excludeKeywords": {
            "title": "Excluded keywords",
            "maxItems": 30,
            "type": "array",
            "description": "Exclude publicly indexed profiles containing these phrases, such as <code>recruiter</code> or <code>student</code>.",
            "items": {
              "type": "string",
              "minLength": 1
            },
            "default": []
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "Backward-compatible single city, region, or country. Known variants are expanded automatically, such as Bangalore/Bengaluru and NYC/New York."
          },
          "locations": {
            "title": "Additional locations",
            "maxItems": 30,
            "type": "array",
            "description": "Alternative locations combined with OR. Useful for multi-city or regional talent searches.",
            "items": {
              "type": "string",
              "minLength": 1
            },
            "default": []
          },
          "country": {
            "title": "Country",
            "type": "string",
            "description": "Optional country required alongside the location group. Known variants are expanded automatically."
          },
          "currentCompany": {
            "title": "Current company",
            "type": "string",
            "description": "Migration-friendly single current-company signal, such as <code>Airbnb</code>. It is combined with any values in Current-company signals."
          },
          "currentCompanies": {
            "title": "Current-company signals",
            "maxItems": 30,
            "type": "array",
            "description": "Company phrases that should appear in the public search evidence. Public indexing cannot guarantee whether every mention is current; the output exposes the matched evidence.",
            "items": {
              "type": "string",
              "minLength": 1
            },
            "default": []
          },
          "pastCompany": {
            "title": "Past company",
            "type": "string",
            "description": "Migration-friendly single former-employer signal. This is public-index evidence, not LinkedIn's authenticated past-company facet."
          },
          "pastCompanies": {
            "title": "Past-company signals",
            "maxItems": 30,
            "type": "array",
            "description": "Former-employer phrases to include. This is a public-index signal rather than LinkedIn's authenticated current/past-company facet.",
            "items": {
              "type": "string",
              "minLength": 1
            },
            "default": []
          },
          "excludeCompanies": {
            "title": "Excluded companies",
            "maxItems": 30,
            "type": "array",
            "description": "Exclude publicly indexed profiles containing these company phrases.",
            "items": {
              "type": "string",
              "minLength": 1
            },
            "default": []
          },
          "school": {
            "title": "School or university",
            "type": "string",
            "description": "Migration-friendly single school or university signal, such as <code>MIT</code>."
          },
          "schools": {
            "title": "Schools or universities",
            "maxItems": 30,
            "type": "array",
            "description": "School or university phrases combined with OR, such as <code>MIT</code> and <code>Stanford University</code>.",
            "items": {
              "type": "string",
              "minLength": 1
            },
            "default": []
          },
          "industry": {
            "title": "Industry",
            "type": "string",
            "description": "Migration-friendly single industry signal, such as <code>fintech</code> or <code>healthcare</code>."
          },
          "industries": {
            "title": "Industries",
            "maxItems": 30,
            "type": "array",
            "description": "Industry phrases combined with OR, such as <code>fintech</code>, <code>healthcare</code>, or <code>renewable energy</code>.",
            "items": {
              "type": "string",
              "minLength": 1
            },
            "default": []
          },
          "seniority": {
            "title": "Seniority",
            "type": "string",
            "description": "Optional seniority phrase, such as <code>senior</code>, <code>lead</code>, <code>staff</code>, <code>principal</code>, or <code>director</code>."
          },
          "minExperienceYears": {
            "title": "Minimum years of experience",
            "minimum": 0,
            "maximum": 40,
            "type": "integer",
            "description": "Minimum years-of-experience phrase to include in the public search."
          },
          "maxExperienceYears": {
            "title": "Maximum years of experience",
            "minimum": 0,
            "maximum": 40,
            "type": "integer",
            "description": "Upper years-of-experience phrase bound."
          },
          "maxResults": {
            "title": "Maximum total profiles",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Global cap after deduplication across every people query and page.",
            "default": 5
          },
          "maxResultsPerQuery": {
            "title": "Maximum profiles per query",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Per-query cap before moving to the next people-search phrase. The global maximum still applies.",
            "default": 100
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Leave the GOOGLE_SERP default enabled. It handles Google's anti-bot layer without using a browser or LinkedIn session.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "GOOGLE_SERP"
              ]
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}