# LinkedIn Jobs

Extract LinkedIn job postings — title, company, location, description, salary, and full company profile — by searching with job titles, location, and filters

**Pricing:** $1 / 1k jobs

**Endpoint:** `POST /api/v1/agents/linkedin/jobs/run`

**Auth:** `Authorization: Bearer mk_live_...`

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `jobTitles` | array | Yes | Job titles to search for (e.g. 'product manager'). One per line. |
| `maxResults` | integer | No | Jobs to return. Use 0 for all. |
| `locations` | array | No | Filter to jobs in these locations. One per line. |
| `company` | array | No | Filter to jobs at these companies (e.g. Google, Stripe). One per line. |
| `workplaceType` | array | No | Filter by where the work happens. |
| `employmentType` | array | No | Filter by employment type. |
| `experienceLevel` | array | No | Filter by required experience level. |
| `salary` | array | No | Only jobs paying at least this much (USD). |
| `postedLimit` | string | No | Only jobs posted within this time window. |
| `sortBy` | string | No | Sort order for results. |
| `industryIds` | array | No | Filter by industry. |
| `easyApply` | boolean | No | Only jobs you can apply to with one click on LinkedIn. |
| `under10Applicants` | boolean | No | Only low-competition jobs (<10 applicants so far). |

## Example

```bash
curl -X POST https://api.mindcase.co/api/v1/agents/linkedin/jobs/run \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"params":{"jobTitles":["..."]}}'
```

```python
import requests

resp = requests.post(
    "https://api.mindcase.co/api/v1/agents/linkedin/jobs/run",
    headers={"Authorization": "Bearer mk_live_YOUR_API_KEY"},
    json={"params": {
    "jobTitles": [
        "..."
    ]
}},
)
data = resp.json()
```

## Get the results

`run` is async and returns a `job_id`. Poll until `status` is `completed`, then read the rows:

```bash
# 1) check status
curl https://api.mindcase.co/api/v1/jobs/JOB_ID \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY"

# 2) when status == completed, fetch the rows
curl https://api.mindcase.co/api/v1/jobs/JOB_ID/results \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY"
```

Full API reference (auth, jobs, balance, SDKs, MCP): https://mindcase.co/skills.md

## Response columns

| Field | Display name | Type |
|-------|--------------|------|
| `jobUrl` | Job URL | url |
| `jobTitle` | Job Title | text |
| `description` | Description | text |
| `employmentType` | Employment Type | text |
| `workplaceType` | Workplace Type | text |
| `applicants` | Applicants | number |
| `posted` | Posted | text |
| `expires` | Expires | text |
| `applyUrl` | Apply URL | url |
| `easyApply` | Easy Apply | text |
| `industries` | Industries | array |
| `salaryMin` | Salary Min | number |
| `salaryMax` | Salary Max | number |
| `salaryCurrency` | Salary Currency | text |
| `salaryPeriod` | Salary Period | text |
| `ats` | ATS | text |
| `benefits` | Benefits | array |
| `recruiterName` | Recruiter Name | text |
| `recruiterUrl` | Recruiter URL | url |
| `city` | City | text |
| `state` | State | text |
| `country` | Country | text |
| `companyName` | Company Name | text |
| `companyUrl` | Company URL | url |
| `companyWebsite` | Company Website | url |
