{
  "openapi": "3.0.1",
  "info": {
    "title": "Free LinkedIn Company Finder - Company URLs & Full Profile Data",
    "description": "Find LinkedIn company pages from any domain list. Get URLs + full profiles (industry, size, HQ, followers, email, phone, socials, e-commerce supplier flag). $2.50/1K results. No LinkedIn account needed for Fast Mode. Apollo, Clearbit & Proxycurl alternative.",
    "version": "0.9",
    "x-build-id": "0BeWwi0xadYpqTtfo"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/yonecode~linkedin-company-enricher/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-yonecode-linkedin-company-enricher",
        "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/yonecode~linkedin-company-enricher/runs": {
      "post": {
        "operationId": "runs-sync-yonecode-linkedin-company-enricher",
        "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/yonecode~linkedin-company-enricher/run-sync": {
      "post": {
        "operationId": "run-sync-yonecode-linkedin-company-enricher",
        "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": {
          "domains": {
            "title": "Domain Names",
            "type": "array",
            "description": "Add domain names (e.g., tesla.com). One per row. Optional if you supply a 'csv_file_url' instead.",
            "items": {
              "type": "string"
            }
          },
          "csv_file_url": {
            "title": "CSV File URL (Optional)",
            "type": "string",
            "description": "URL to a CSV file containing domains (one per row, column header 'domain' or 'website'). Use this for bulk uploads of 1,000+ domains. Overrides the 'domains' field if provided.",
            "default": ""
          },
          "include_company_details": {
            "title": "Extract Company Details",
            "type": "boolean",
            "description": "When enabled, the Actor will navigate to each LinkedIn company page and extract: company name, industry, size, headquarters, type, specialties, description, followers, and website. Disable for faster URL-only results.",
            "default": true
          },
          "include_contact_info": {
            "title": "Extract Contact Information",
            "type": "boolean",
            "description": "Attempt to extract email addresses and phone numbers from the company's LinkedIn page and linked website. Note: contact data is not always available on LinkedIn; this is a best-effort extraction.",
            "default": true
          },
          "extract_socials": {
            "title": "Extract Social Media URLs",
            "type": "boolean",
            "description": "Find Facebook, Instagram, and Twitter/X profile URLs for each company. Uses enhanced search sources — no external API keys required.",
            "default": true
          },
          "country_filter": {
            "title": "Country Filter (Optional)",
            "type": "array",
            "description": "Prioritize specific LinkedIn country domains (e.g., ['US', 'DE', 'NL']). Leave empty for automatic detection. Useful when targeting companies in specific regions (e.g., EU suppliers).",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "max_concurrent": {
            "title": "Max Concurrent Domains",
            "minimum": 1,
            "maximum": 5,
            "type": "integer",
            "description": "Number of domains to process in parallel. Higher = faster but uses more proxy resources. Recommended: 5-15. Default lowered to 5 at launch to minimize LinkedIn auth-wall rates while we calibrate.",
            "default": 5
          },
          "proxy_configuration": {
            "title": "Proxy Configuration",
            "type": "object",
            "description": "Proxy settings for LinkedIn access. RESIDENTIAL proxy group is required for reliable LinkedIn company page extraction. Do not use datacenter proxies — LinkedIn will block them instantly. Only used in Deep Mode.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ]
            }
          },
          "linkedin_cookies": {
            "title": "LinkedIn Cookies (Deep Mode)",
            "type": "string",
            "description": "Paste your LinkedIn `li_at` cookie value (or the full `Cookie:` header, or a JSON cookie-export array). When provided, the Actor runs in DEEP MODE — it launches a browser with your authenticated session and extracts the full company profile (industry, size, HQ, specialties, followers, contacts, socials, supplier detection — 20 fields total). Leave EMPTY for FAST MODE: Google-only lookup that returns just `linkedin_url` + `match_confidence` in under 5s per domain, no browser launched."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}