# LinkedIn Company URL Retriever (`caprolok/linkedin-company-url-retriever`) Actor

Designed to streamline company research, this Apify actor automates the process of finding and extracting LinkedIn URLs for specified companies. Simply input company names, and it efficiently delivers their corresponding LinkedIn profiles, enhancing market analysis and networking efforts.

- **URL**: https://apify.com/caprolok/linkedin-company-url-retriever.md
- **Developed by:** [Caprolok](https://apify.com/caprolok) (community)
- **Categories:** Lead generation
- **Stats:** 48 total users, 0 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

$10.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period.You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#rental-actors

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Introduction

In the evolving data-centric business world, our LinkedIn Company URL Scraper emerges as a pivotal tool, efficiently gathering company URLs directly from LinkedIn. This tool not only streamlines data collection but also ensures that the gathering process is conducted responsibly and ethically.

### Why Use Our Tool?

Our tool is a harmonious blend of efficiency and ethical data collection. It's specifically designed to retrieve high-quality LinkedIn company URLs. This makes it an indispensable asset for professionals seeking accurate and responsibly sourced data.

### Primary Benefits

- **Responsible Data Collection**: Complies with ethical standards, ensuring legitimate data gathering from LinkedIn.
- **Efficiency**: Specializes in automating the LinkedIn URL collection process, saving significant time and resources.
- **Accuracy**: Uses advanced algorithms to precisely target and acquire LinkedIn company URLs.
- **User-Friendly**: Easy to use, accommodating users with varying levels of technical expertise.

### Detailed FeaturesW

- **Concurrent Processing**: Effectively manages simultaneous operations for faster LinkedIn URL retrieval.
- **Data Cleaning**: Focuses on providing clean, LinkedIn-specific URLs, free from extraneous data.
- **Intelligent Data Aggregation**: Organizes LinkedIn data efficiently for practical application.

### Real-Life Application

For marketing professionals, this tool is particularly transformative. Picture needing to design a targeted marketing campaign for businesses in a particular industry. Instead of manually searching for LinkedIn company URLs, our tool swiftly compiles a comprehensive list. This data can be pivotal in analyzing LinkedIn company profiles, gauging industry trends, or initiating business connections, thus significantly amplifying marketing efforts and business networking.

### Process Overview

- **Initial Setup**: Begins with an emphasis on responsible LinkedIn data scraping techniques.
- **Input Reception**: Collects input for processing LinkedIn company names.
- **Data Processing**: Processes data specifically from LinkedIn, ensuring accuracy.
- **URL Extraction and Refinement**: Extracts and fine-tunes LinkedIn URLs for practical use.
- **Data Output**: Delivers a well-organized collection of LinkedIn-specific URLs.

### Conclusion

Our LinkedIn Company URL Scraper is a specialized tool designed for effective and ethical collection of LinkedIn company URLs. It stands as an invaluable resource for various professional scenarios, offering a dependable and conscientious approach to LinkedIn data collection. This tool is not just about efficiency; it's about providing targeted, valuable LinkedIn data for those who prioritize precision and ethical practices in their data collection efforts.

# Actor input Schema

## `companyNames` (type: `array`):

Enter the company names/Domains whoose urls you want to extract

## Actor input object example

```json
{
  "companyNames": [
    "Microsoft",
    "Akamai Technologies"
  ]
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "companyNames": [
        "Microsoft",
        "Akamai Technologies"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("caprolok/linkedin-company-url-retriever").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "companyNames": [
        "Microsoft",
        "Akamai Technologies",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("caprolok/linkedin-company-url-retriever").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "companyNames": [
    "Microsoft",
    "Akamai Technologies"
  ]
}' |
apify call caprolok/linkedin-company-url-retriever --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=caprolok/linkedin-company-url-retriever",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/z9E7cOjSqcGueyfkg/builds/Kq3e3CPD0abGn1K7X/openapi.json
