# Linkedin Products Scraper (`rainminer/linkedin-products-scraper`) Actor

Extract structured product data from LinkedIn Products — product names, categories, company pages, descriptions, target roles, featured customers, media labels, and related products. Use product, category, search, or home URLs to collect product intelligence from LinkedIn.

- **URL**: https://apify.com/rainminer/linkedin-products-scraper.md
- **Developed by:** [rainminer](https://apify.com/rainminer) (community)
- **Categories:** Lead generation, AI, Jobs
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.49 / 1,000 products

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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

### What does LinkedIn Products Scraper do?

**LinkedIn Products Scraper** extracts structured product data from [LinkedIn Products](https://www.linkedin.com/products/) public pages. Use it to collect product names, categories, vendor pages, descriptions, intended roles, featured customers, media labels, product URLs, and related products from LinkedIn's software and business product directory.

### Why scrape LinkedIn Products?

- **Market research** — Map competitors and vendors across software categories.
- **Lead enrichment** — Add product, company, and category context to CRM records.
- **Category monitoring** — Track products in niches such as CRM, recruiting, payroll, analytics, and online learning.
- **Product intelligence** — Export LinkedIn product profile data to JSON, CSV, Excel, or API workflows.

### What data can you extract from LinkedIn Products?

| Field | Description |
| --- | --- |
| productName | Product name shown on LinkedIn |
| productUrl / productSlug | Public LinkedIn Products profile URL and slug |
| category / categoryUrl | Product category and category page URL |
| companyName / companyUrl | Vendor name and LinkedIn company URL |
| description | Product description from the About section |
| intendedFor | Roles the product is intended for |
| websiteUrl | Public learn-more or vendor landing page URL |
| logoUrl / coverImageUrl | Product logo and cover image URLs |
| mediaTitles | Public media titles or labels |
| featuredCustomers | Customer names, industries, follower counts, and company URLs |
| similarProducts | Related product references from the detail page |
| otherProductsByCompany | Other products published by the same company |
| sourceUrl / sourceType | Input URL or generated query that discovered the product |

### How to scrape LinkedIn Products

1. Open the Actor in Apify Console.
2. Add LinkedIn Products URLs such as `https://www.linkedin.com/products/categories/recruiting-software`, `https://www.linkedin.com/products/search/?q=crm`, or a product detail URL.
3. Optionally add search queries or category slugs.
4. Set **Maximum products per input**.
5. Run the Actor and export the dataset.

### Input

LinkedIn Products Scraper accepts:

- **Start URLs** — home, category, search, or product detail URLs.
- **Search queries** — keywords such as `crm`, `payroll`, or `analytics`.
- **Category slugs** — values such as `recruiting-software` or `customer-relationship-management-software`.
- **Maximum products per input** — per input URL/query/category.
- **Proxy configuration** — optional; default is no Apify Proxy.

If no URLs, queries, or category slugs are provided, the scraper starts from `https://www.linkedin.com/products/`.

### Output example

```json
{
  "productName": "LinkedIn Recruiter",
  "productSlug": "linkedin-recruiter",
  "productUrl": "https://www.linkedin.com/products/linkedin-recruiter/",
  "category": "Recruiting Software",
  "categoryUrl": "https://www.linkedin.com/products/categories/recruiting-software",
  "companyName": "LinkedIn",
  "companyUrl": "https://www.linkedin.com/company/linkedin/",
  "description": "Linkedin Recruiter is a robust hiring platform for hiring professionals...",
  "intendedFor": ["Recruiter", "Human Resources Executive"],
  "websiteUrl": "https://business.linkedin.com/talent-solutions/recruiter?src=li-rev-prod",
  "featuredCustomers": [
    {
      "name": "Dropbox",
      "companyUrl": "https://www.linkedin.com/company/dropbox",
      "industry": "Software Development",
      "followers": "3,000,000 followers"
    }
  ],
  "sourceType": "category",
  "sourceValue": "recruiting-software"
}
````

### FAQ

**Which URLs are supported?**\
The scraper supports LinkedIn Products home, category, search, and product detail URLs under `https://www.linkedin.com/products/`.

**Does it need a browser?**\
No. LinkedIn Products public pages expose the relevant directory data in the initial HTML, so this Actor uses an HTTP crawler for lower cost.

**How much does scraping LinkedIn Products cost?**\
The Actor uses Cheerio-based HTTP scraping and does not enable a proxy by default, keeping small category or search runs inexpensive.

### Image Credit

Image credit: [linkedin.com](https://www.linkedin.com/products/)

# Actor input Schema

## `startUrls` (type: `array`):

LinkedIn Products home, category, search, or product detail URLs. If empty, the scraper starts from https://www.linkedin.com/products/.

## `searchQueries` (type: `array`):

Optional keywords to search on LinkedIn Products, such as CRM, recruiting, analytics, or payroll.

## `categorySlugs` (type: `array`):

Optional LinkedIn Products category slugs, such as recruiting-software or customer-relationship-management-software.

## `maxItems` (type: `integer`):

Maximum number of product detail records to return per start URL, search query, or category slug.

## `includeSimilarProducts` (type: `boolean`):

Include similar products and other products by the same company from product detail pages.

## `proxyConfiguration` (type: `object`):

Proxy settings. The scraper uses public LinkedIn Products pages and works without a proxy in many environments.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.linkedin.com/products/categories/recruiting-software"
    },
    {
      "url": "https://www.linkedin.com/products/linkedin-recruiter/"
    }
  ],
  "searchQueries": [
    "crm"
  ],
  "categorySlugs": [
    "recruiting-software"
  ],
  "maxItems": 5,
  "includeSimilarProducts": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# 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 = {
    "startUrls": [
        {
            "url": "https://www.linkedin.com/products/categories/recruiting-software"
        },
        {
            "url": "https://www.linkedin.com/products/linkedin-recruiter/"
        }
    ],
    "searchQueries": [
        "crm"
    ],
    "categorySlugs": [
        "recruiting-software"
    ],
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("rainminer/linkedin-products-scraper").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 = {
    "startUrls": [
        { "url": "https://www.linkedin.com/products/categories/recruiting-software" },
        { "url": "https://www.linkedin.com/products/linkedin-recruiter/" },
    ],
    "searchQueries": ["crm"],
    "categorySlugs": ["recruiting-software"],
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("rainminer/linkedin-products-scraper").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 '{
  "startUrls": [
    {
      "url": "https://www.linkedin.com/products/categories/recruiting-software"
    },
    {
      "url": "https://www.linkedin.com/products/linkedin-recruiter/"
    }
  ],
  "searchQueries": [
    "crm"
  ],
  "categorySlugs": [
    "recruiting-software"
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call rainminer/linkedin-products-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Linkedin Products Scraper",
        "description": "Extract structured product data from LinkedIn Products — product names, categories, company pages, descriptions, target roles, featured customers, media labels, and related products. Use product, category, search, or home URLs to collect product intelligence from LinkedIn.",
        "version": "1.0",
        "x-build-id": "0xZPa1JophsJSfoLR"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/rainminer~linkedin-products-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-rainminer-linkedin-products-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/rainminer~linkedin-products-scraper/runs": {
            "post": {
                "operationId": "runs-sync-rainminer-linkedin-products-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/rainminer~linkedin-products-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-rainminer-linkedin-products-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": {
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "LinkedIn Products home, category, search, or product detail URLs. If empty, the scraper starts from https://www.linkedin.com/products/.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "searchQueries": {
                        "title": "Search queries",
                        "type": "array",
                        "description": "Optional keywords to search on LinkedIn Products, such as CRM, recruiting, analytics, or payroll.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "categorySlugs": {
                        "title": "Category slugs",
                        "type": "array",
                        "description": "Optional LinkedIn Products category slugs, such as recruiting-software or customer-relationship-management-software.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItems": {
                        "title": "Maximum products per input",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Maximum number of product detail records to return per start URL, search query, or category slug.",
                        "default": 5
                    },
                    "includeSimilarProducts": {
                        "title": "Include related products",
                        "type": "boolean",
                        "description": "Include similar products and other products by the same company from product detail pages.",
                        "default": true
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Proxy settings. The scraper uses public LinkedIn Products pages and works without a proxy in many environments."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
