# LinkedIn Internship Scraper

**Use case:** 

Internships are a separate contract type on LinkedIn and easy to miss in a normal search. This example filters to internships and returns the title, company, location, posting date and apply link. Career services teams use it to keep a student board current without checking the site by hand.

## Input

```json
{
  "titles": [
    "Data Analyst"
  ],
  "locations": [
    "United States"
  ],
  "maxItems": 50,
  "publishedAt": "",
  "contractType": "I",
  "experienceLevel": "",
  "workType": "",
  "easyApply": false
}
```

## Output

```json
{
  "title": {
    "label": "Job Title",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "jobLevel": {
    "label": "Seniority",
    "format": "text"
  },
  "salaryMin": {
    "label": "Salary min",
    "format": "number"
  },
  "salaryMax": {
    "label": "Salary max",
    "format": "number"
  },
  "salaryCurrency": {
    "label": "Currency",
    "format": "text"
  },
  "salaryPeriod": {
    "label": "Per",
    "format": "text"
  },
  "jobType": {
    "label": "Type",
    "format": "text"
  },
  "datePosted": {
    "label": "Posted",
    "format": "text"
  },
  "jobUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [LinkedIn Job Search Scraper | Salaries & Seniority](https://apify.com/silentflow/linkedin-jobs-scraper-ppr.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/silentflow/linkedin-jobs-scraper-ppr.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/silentflow/linkedin-jobs-scraper-ppr.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
