{
  "openapi": "3.0.1",
  "info": {
    "title": "LinkedIn Company Search Scraper & Lead Discovery (No Login)",
    "description": "Search public LinkedIn companies without login. Filter by keyword, location, industry, and size. Get fast short results from $1/1,000 or full verified company details with employee counts, contacts, relevance scores, and API-ready data.",
    "version": "0.0",
    "x-build-id": "rZkeOo7xcZYiOGuJv"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/generous_fog~linkedin-company-search-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-generous_fog-linkedin-company-search-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/generous_fog~linkedin-company-search-scraper/runs": {
      "post": {
        "operationId": "runs-sync-generous_fog-linkedin-company-search-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/generous_fog~linkedin-company-search-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-generous_fog-linkedin-company-search-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": [
          "searchQuery"
        ],
        "properties": {
          "scraperMode": {
            "title": "Result mode",
            "enum": [
              "short",
              "full"
            ],
            "type": "string",
            "description": "Full opens each public LinkedIn company page and verifies filters. Short returns faster public-index discovery records; location, industry, and size are search hints only in Short mode.",
            "default": "short"
          },
          "searchQuery": {
            "title": "Company search query",
            "type": "string",
            "description": "Company name, product, sector, keyword, or boolean-style public search expression. Example: software, Netflix, or automation AND SaaS.",
            "default": "SaaS companies"
          },
          "locations": {
            "title": "Locations",
            "type": "array",
            "description": "Optional location names. Full mode verifies them against public company locations; Short mode uses them as public-index query hints.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "industryIds": {
            "title": "LinkedIn industry IDs",
            "type": "array",
            "description": "Optional LinkedIn industry IDs. Common IDs are mapped to industry names for public discovery and verified when the public company page exposes matching evidence.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "industries": {
            "title": "Industry names",
            "type": "array",
            "description": "Recommended public-data industry filter, such as Software Development, Financial Services, or Marketing and Advertising.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "companySize": {
            "title": "Company sizes",
            "type": "array",
            "description": "Optional employee ranges: 1, 2-10, 11-50, 51-200, 201-500, 501-1000, 1001-5000, 5001-10000, or 10001+. LinkedIn letter codes A-I are also accepted.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "includeKeywords": {
            "title": "Include keywords",
            "type": "array",
            "description": "Optional OR-style keywords matched against the search card and verified company details.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "excludeKeywords": {
            "title": "Exclude keywords",
            "type": "array",
            "description": "Reject results whose visible search or company text contains any of these terms.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "minimumScore": {
            "title": "Minimum search relevance score",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Minimum 0-100 public-evidence relevance score required before a record can be returned and charged.",
            "default": 30
          },
          "maxItems": {
            "title": "Maximum companies",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Maximum successful company results. Filtered, duplicate, failed, and insufficient records do not consume this limit.",
            "default": 10
          },
          "startPage": {
            "title": "Start search page",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "Public-index page number to start from.",
            "default": 1
          },
          "takePages": {
            "title": "Search pages to inspect",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "Number of public-index pages to inspect, up to 20. Each source page can expose up to about 25 candidate companies.",
            "default": 1
          },
          "requestDelaySecs": {
            "title": "Delay between company requests",
            "minimum": 0.5,
            "maximum": 60,
            "type": "number",
            "description": "Base delay for Full-mode LinkedIn company-page enrichment, plus automatic jitter and retry backoff.",
            "default": 0.8
          },
          "includeWikidata": {
            "title": "Add Wikidata enrichment",
            "type": "boolean",
            "description": "Optionally add public founders, tickers, headquarters, aliases, and other knowledge-graph fields when confidently matched.",
            "default": false
          },
          "includeWikipedia": {
            "title": "Add Wikipedia enrichment",
            "type": "boolean",
            "description": "Optionally add a public Wikipedia summary when Wikidata enrichment resolves a matching article.",
            "default": false
          },
          "includeWebsiteEnrichment": {
            "title": "Inspect official website",
            "type": "boolean",
            "description": "Optionally inspect the company-owned website for public contact, technology, social, about, and careers evidence. Slower than LinkedIn-only Full mode.",
            "default": false
          },
          "includeContactDiscovery": {
            "title": "Inspect contact/about/careers pages",
            "type": "boolean",
            "description": "When website enrichment is enabled, also inspect same-domain contact, about, and careers pages up to the configured page limit.",
            "default": false
          },
          "maxOfficialPages": {
            "title": "Maximum official website pages",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "Maximum same-domain pages inspected per company when website/contact enrichment is enabled.",
            "default": 1
          },
          "enrichSimilarCompanies": {
            "title": "Enrich similar company cards",
            "type": "boolean",
            "description": "Open a limited number of public similar-company pages for deeper nested data. Disabled by default to keep search runs fast.",
            "default": false
          },
          "maxSimilarCompanies": {
            "title": "Maximum similar companies",
            "minimum": 0,
            "maximum": 10,
            "type": "integer",
            "description": "Maximum nested similar-company cards to enrich per approved result.",
            "default": 5
          },
          "linkedInRegion": {
            "title": "Preferred public LinkedIn region",
            "type": "string",
            "description": "Preferred English regional LinkedIn host. Additional English regions are tried automatically.",
            "default": "in"
          },
          "languageCode": {
            "title": "Language code",
            "type": "string",
            "description": "Language hint for public search results, regional LinkedIn pages, and optional knowledge-graph labels.",
            "default": "en"
          },
          "countryCode": {
            "title": "Search country code",
            "type": "string",
            "description": "Country hint for the public search source and HTTP language headers.",
            "default": "us"
          },
          "maxTotalCharge": {
            "title": "Maximum total charge (USD)",
            "minimum": 0,
            "type": "number",
            "description": "Optional local USD guard. No additional paid result event is emitted after this cap would be exceeded.",
            "default": 0.03
          },
          "dryRun": {
            "title": "Dry run",
            "type": "boolean",
            "description": "Validate and show the planned public search expression without network requests or paid events.",
            "default": false
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Optional Apify proxy fallback for public search, LinkedIn company pages, and optional company-owned websites."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}